
body {

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.home-header {
   position: sticky;
   top: 0;
   backdrop-filter: blur(5px);
   background-color: #FFFFFF80;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 1rem 0 1rem;
}

.home-main {
    flex: 1;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
    margin-top: 10%;
    padding: 1rem;
}

.about-main, .contact-main {
    max-width: 500px;
    margin: 3rem auto 0 auto;
    padding: 1rem;
}

.about-main p, .contact-main p {
    margin: 1rem 0 2rem 0;
}

.about-title, .contact-title {
    text-align: center;
}

.home-img-container img {
    max-width: 100%;
    width: 400px;
}

.home-img-container figcaption {
    opacity: 0.6;
}

.home-nav ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mv-link {
    padding: 3px 5px;
    border-radius: 3px;
}

.mv-link:hover, .mv-link-active {
    background-color: var(--light-grey);
}

.mv-cormorant {
    font-family: "Cormorant", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.mv-title {
    font-size: 2rem;
    line-height: 1.5;
    text-transform: uppercase;
}

.mv-subtitle {
    font-size: 1.5rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .home-header {
        position: relative;
    }
}