body {
    background-color: #FFFFF9;
    margin: 5%;
}

h1 {
    font-family: 'Big Caslon';
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: normal;
    color: #2C2727;
}

h2 {
    font-family: 'Big Caslon';
    font-size: var(--font-xxl);
    font-weight: 500;
    line-height: normal;
    color: #2C2727;
}

p {
    font-family: 'Inter';
    font-size: var(--font-sm);
    font-size: medium;
    font-weight: 300;
    color: #2C2727;
    line-height: 180%;
}

a {
    color: #2C2727;
    text-decoration: none; /* no underline */
    transition: .2s ease-in-out;
}

a:hover {
    color: red;
}

.btn {
    font-family: 'Big Caslon';
    font-size: var(--font-md);
    font-weight: 500;
    line-height: normal;
    color: #2C2727;
    background-color: none;
    align-items: center;
    gap: 8px;
    margin: 0;
    display: inline-flex;
    justify-content: flex-end;
    cursor: pointer;
}

#logo {
    color: red;
}

#insta {
    width: 100%;
}

.insta {
    margin: 0;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

hr {
    color: black;
    width: 100%;
    size: .5px;
}

:root {
    --font-sm: clamp(0.8rem, 0.16vw + 0.76rem, 0.89rem);
    --font-base: clamp(1rem, 0.33vw + 0.92rem, 1.19rem);
    --font-md: clamp(1.25rem, 0.59vw + 1.11rem, 1.58rem);
    --font-lg: clamp(1.56rem, 0.98vw + 1.33rem, 2.11rem);
    --font-xl: clamp(1.95rem, 1.53vw + 1.58rem, 2.81rem);
    --font-xxl: clamp(2.44rem, 2.34vw + 1.88rem, 3.75rem);
    --font-xxxl: clamp(2.84rem, 2.74vw + 2.18rem, 3.95rem);
}

img {
    width: 100%;
}

/* .gallery-pg2 > img {
    width: 60%;
} */

.base {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* footer styling */

footer {
    display: inline-flex;
    flex-direction: column;
}

.footer-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

p.footer {
    text-align: left;
    font-size: var(--font-base);
    font-family: 'Big Caslon';
}

.menu {
    display: inline-flex;
    align-items: center;
    gap: 50px;
}

.container {
    display: inline-flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.slogan {
    width: 100%;
}

.gallery {
    display: inline-flex;
    flex-direction: row;
    width: 100%;
}

.gallery-pg2 {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

/* wacky items */

.nav {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #fffff9ed;
    overflow-x: hidden;
    transition: 0.5s;
    padding: 20% 0% 0% 5%;
    opacity: 0;
}

.navbar {
    display: inline-flex;
    align-items: center;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}

.menu {
    display: none;
}

#menu {
    position: relative;
    z-index: 99;
}

#cross {
    width: 10%;
    transform: rotate(0deg);
    transition: .3s;
}

#mobile {
    display: inline-flex;
}

#web {
    display: none;
}

@media only screen and (min-width: 992px) {

    .footer-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    p.footer {
        text-align: center;
    }
    
    .container {
        flex-direction: row;
        gap: 50px;
    }

    .slogan {
        width: 50%;
    }

    #mobile {
        display: none;
    }

    #web {
        display: inline-flex;
    }

    .menu {
        display: inline-flex;
    }

    .nav {
        display: none;
    }

    .navbar {
        display: none;
    }

}