@import url('https://fonts.googleapis.com/css2?family=Jaro:opsz@6..72&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Sigmar&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; 
}

a:hover {
    opacity: 50%;
}

li a {
    color: #d26936;
    text-decoration: underline;
}

header {
    width: 100%;
    background-color: #FFFFF0;
    padding: 1em;
    box-sizing: border-box;
}

header img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.termslink,
.privacylink {
    display: inline-block;
    padding: 1px 5px;
}


.termslink a,
.privacylink a {
    text-decoration: none;
    color: #d26936;
    font-family: Oswald, Arial, sans-serif;
    font-size: 1em;
}

nav {
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: Oswald, Arial, sans-serif;
    font-size: 1.3em;
    margin-left: -4vw;
}

nav li {
    margin: 0 13px;
}

nav a {
    text-decoration: none;
    color: #d26936;
    padding: 5px 10px;
}

hr {
    width: 80%;
    margin: 10px auto 5px;
    border-top: 5px solid #d26936;
}

.textbox {
    color: #d26936;
    justify-content: center;
    font-family: Oswald, Arial, sans-serif;
    font-size: 1.3em;
    text-align: justify;
    margin: 0 10% 2% 10%;
    padding: 1% 2% 1% 2%;
    border: solid 5px #d26936;
    background-color: antiquewhite;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
    position: relative;
    border-radius: 8px;
}

.textbox span {
    font-family: Sigmar, helvetica, sans-serif;
    font-size: 1.3em;
    margin-left: 5vh;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .4);
}

.textbox .inline {
    margin: 0;
}

#termspage .textbox,
#privacypage .textbox {
    margin: 0 10%;
}

.loft {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.studio {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 2%;
}

.bio {
    padding-bottom: calc(15% + 20px);
}

.headline {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: auto;
    width: fit-content;
    margin-top: 2vh;
    border: solid 5px #d26936;
    border-radius: 8px;
    background-color: antiquewhite;
}

#aboutpage .headline,
#termspage .headline,
#privacypage .headline {
    margin-bottom: 1vh;
    margin-top: 1vh;
}

.gallery {
    padding: 1em; 
    display: flex;
    justify-content: center; 
    background-color: antiquewhite;
    border: solid 5px #d26936;
    border-radius: 8px;
    margin: 2vh 5%; 
    width: 90%; 
    height: auto; 
    box-sizing: border-box; 
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-auto-rows: auto; 
    gap: 1em; 
}

.grid a {
    display: block; 
    width: 100%;
    height: 100%;
}

.grid img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #FFFFF0;
    text-align: center;
    font-family: Sigmar, Arial, sans-serif;
    font-size: 1.1em;
    margin-bottom: 5%;
    color: #d26936;
}

footer hr {
    width: 80%;
    margin: 1vh auto 10px;
    border-top: 5px solid #d26936;
}

footer span {
    font-size: .8em;
}

#homepage #homelink,
#aboutpage #aboutlink,
#collaborationspage #collaborationslink,
#termspage .termslink a,
#privacypage .privacylink a {
    text-shadow: none;
    color: #e5cbbb;
    opacity: 100%;
}

html {
    background-color: #FFFFF0;
}

footer #counter, footer #counter1 {
    color: #FFFFF0;
    font-family: sans-serif;
    font-size: 1.3em;
}

.MsoNormal {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 1vh;
    margin-left: 2vw;
    line-height: 1.3em;
    font-size: .7em;
}

ul {
    padding-left: 4vw;
}

@media screen and (max-width: 600px) {
    nav ul {
        flex-direction: row;
        align-items: center;
    }

    nav li {
        margin: 0;
    }

    #privacypage .headline img {
        width: 49vw;
        height: auto;
    }

    #termspage .headline img {
        width: 49vw;
        height: auto;
    }

    #aboutpage .headline img {
        width: 49vw;
        height: auto;
    }

    #homepage .headline img {
        width: 58vw;
        height: auto;
    }
    
    #collaborationspage .headline img {
        width: 58vw;
        height: auto;
    }
}

@media screen and (min-width: 601px) and (max-width: 1200px) {
    #privacypage .headline img {
        width: 31vw;
        height: auto;
    }

    #termspage .headline img {
        width: 40vw;
        height: auto;
    }

    #aboutpage .headline img {
        width: 31vw;
        height: auto;
    }

    #homepage .headline img {
        width: 49vw;
        height: auto;
    }
    #collaborationspage .headline img {
        width: 49vw;
        height: auto;
    }
}

@media screen and (min-width: 1201px) {
    #privacypage .headline img {
        width: 22vw;
        height: auto;
    }

    #termspage .headline img {
        width: 31vw;
        height: auto;
    }

    #aboutpage .headline img {
        width: 22vw;
        height: auto;
    }

    #homepage .headline img {
        width: 40vw;
        height: auto;
    }
    
    #collaborationspage .headline img {
        width: 40vw;
        height: auto;
    }

}