
*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html, body{
    overflow: auto;
}

.nav{
    color: white;
    display: flex;
    justify-content: center;
    font-family: 'Teko', sans-serif;
    font-size: 25px;
    margin: 25px 0px 0px 0px;
}

.nav h2{
    position: absolute;
    display: block;
    margin: 10px;
    text-transform: uppercase;
}

.nav ul{
    position: relative;
    justify-items: space-between;
    padding: 20px;
    top: 25px;
    font-size: 25px;

}

.nav ul li{
    display: inline-block;
    padding: 30px 30px;
    text-transform: uppercase;
}

.square-grey{
    position: absolute;
    width: 200px;
    height: 1px;
    background: rgb(250, 169, 94);
    top: 80px;
}

/**
.square-black{
    position: absolute;
    width: 400px;
    height: 1px;
    background: rgb(250, 169, 94);
    top: 140px;
}
**/

.home {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-image: url("https://i.pinimg.com/originals/f6/de/ab/f6deab221a6537605dbdd96edff034db.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    overflow: auto;
    text-align: center;
    
}
.home .home-content{
    position: relative;
    display: inline-block;
    text-align: center;
    max-width: 100vw;
}

.home .home-content h3{
    position: relative;
    display: block;
    font-family: sans-serif;
    color: rgb(250, 169, 94);
    padding: 130px 0 0 0;
    font-size: 250px;
    font-family: "Amatic SC", sans-serif;
}

.home .home-content p{
    position: relative;
    display: block-inline;
    color: rgb(250, 169, 94);
    padding: 150px 0 0 0;
    font-size: 72px;
    font-family: "Amatic SC", sans-serif;
    letter-spacing: 40px;
    padding: 100px;
}

.home .moon-img {
    position: absolute;
    display: block-inline;
    background-image: url("/images/moon-edited.png");
    background-repeat: no-repeat;
    width: 500px;
    height: 500px;
    top: 30px;
}

.gallery {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url("https://i.pinimg.com/originals/f6/de/ab/f6deab221a6537605dbdd96edff034db.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: auto;
}

.gallery .gallery-content{
    text-align: center;
}

.gallery .gallery-content h1{
    font-family: "Amatic SC", sans-serif;
    color: rgb(250, 169, 94);
    font-size: 112px;
    margin: 0 0 100px 0;
}

.gallery .gallery-content h2{
    display: block;
    font-family: "Amatic SC", sans-serif;
    color: rgb(250, 169, 94);
    font-size: 50px;
    margin: 100px 0 0 0;
}

.gallery .gallery-content p{
    position: relative;
    display: inline-block;
    padding: 20px;
    margin: 40px 50px;
    background-color: rgba(0, 0, 0, 0.568);
    border-radius: 100px;
    font-family: "Teko", sans-serif;
    color: white;
    font-size: 32px;
    border: 1px solid rgb(250, 169, 94);
}

.gallery .gallery-content .painting{
    position: relative;
    display: flex;
    border-radius: 100px;
    max-width: 100vw;
    justify-content: center;  
    flex-wrap: wrap;
    align-items: center;
}

#left{
    flex-wrap: wrap;
}

#right{
    flex-wrap: wrap-reverse;
}

.gallery .gallery-content .painting img {
    display: inline-block;
    position: relative;
    border-radius: 50px;
    width: 700px;
    height: 450px;
    border: 1px solid rgb(250, 169, 94);
}

.contact {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-image: url("https://i.pinimg.com/originals/f6/de/ab/f6deab221a6537605dbdd96edff034db.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: auto;
}

.contact .contact-content h1{
    font-family: "Amatic SC", sans-serif;
    color: rgb(250, 169, 94);
    font-size: 112px;
}

.contact .contact-content p{
    font-family: "Amatic SC", sans-serif;
    color: rgb(250, 169, 94);
    font-size: 42px;
    margin: 50px;
    padding: 10px 0;
    background-size: auto;
    border-radius: 50px;
    display: block;
    position: relative;
}

.contact .contact-content p a{
    background-color: rgba(0, 0, 0, 0.603);
    border-radius: 40px;
    padding: 0 40px;
    border: 1px solid rgb(250, 169, 94);
}

.contact .contact-content{
    text-align: center;
}

a:visited, a:link{
    text-decoration: none;
    text-decoration-color: rgb(250, 169, 94);
    color: white;
}

a:active, a:hover{
    text-decoration: underline;
    text-decoration-style:line;
    text-decoration-color: rgb(250, 169, 94);
}

#selected{
    text-decoration: underline;
    text-decoration-style:line;
    text-decoration-color: rgb(250, 169, 94);
}