:root {
    --background: #f5e8df;
    --text: #111111;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: "Cormorant Garamond", serif;
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
    padding-top: 40px;
}

.logo {
    width: 550px;
    max-width: 90%;
    height: auto;
}

.nav-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;

    margin-top: 50px;
    padding: 25px 0;

    border-top: 1px solid #8c7a63;
    border-bottom: 1px solid #8c7a63;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;

    text-decoration: none;
    color: #111111;

    font-size: 1.3rem;
    letter-spacing: 3px;

    transition: 0.2s ease;
}

.nav-item:hover {
    text-decoration: underline;
    opacity: 0.7;
}

.icon {
    width: 40px;
    height: auto;
}

@media (max-width: 768px) {

    .logo {
        width: 95%;
    }

    .nav-row {
        flex-direction: column;
        gap: 30px;
    }

    .nav-item {
        font-size: 1rem;
    }
}