@font-face {
    font-family: 'archivo_blackregular';
    src: url('/Fonts/webfontkit-20221004-154154/archivoblack-webfont.woff2') format('woff2'),
         url('/Fonts/webfontkit-20221004-154154/archivoblack-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'montserratregular';
    src: url('/Fonts/webfontkit-2/montserrat-regular-webfont.woff2') format('woff2'),
         url('/Fonts/webfontkit-2/montserrat-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*, *::before, *::after {
    box-sizing: border-box;
    list-style-type: none;
}

#mainbody{
    margin: 0;
    overflow-x: hidden;
}
#header{
    display: block;
    margin-top: 2%;
    z-index: 1;
    top: 0%;
    position: -webkit-sticky;
    position: sticky;
    min-width: 100vw;
    height: 8%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
#hometitlediv{
    position: absolute;
    top:8%;
    left:4%;
    font-size: 50px;
}
#hometitle{
    font-family: 'archivo_blackregular';
    color:black;
    text-decoration: none;
}
#workdiv{
    font-family: 'montserratregular';
    position: absolute;
    top: 20%;
    right: 9%;
}
#contactdiv{
    font-family: 'montserratregular';
    position: absolute;
    top: 20%;
    right: 2%;
}
#contactswork{
    color:black;
    text-decoration: none;
    font-size: 25px;
}
#albumtitle{
    display: block;
    text-align: center;
    font-family: 'archivo_blackregular';
}
#pictureshow{
    display: none;
}
#picturebutton{
    cursor: pointer;
}
#carousel {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
#exitbutton {
    position: fixed;
    font-size: 50;
    padding: 0;
    border: none;
    background: none;
    left: 2rem;
    z-index: 3;
}
.flexsection{
    padding-top: 40px;
    width: 100vw;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.flexdiv{
    position: relative;
    overflow: hidden;
    padding: 12px;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 12px;
    margin-bottom: 30px;
    display: inline-block;
    width: 42vw;
    height: 100vh;
        /*
    padding-top: 12px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 30px;
    */
}
.wide{
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -10187px;
    right: -9999px;
    margin: auto;
    width: 150%;
    height: 100%;
    object-fit: contain;
}
.wideCentered{
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
    width: 150%;
    height: 100%;
    object-fit: contain;
}
.tall{
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*
.flexdiv img{
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
    width: 100%;
    height: 100%;

}
*/
.centerTextContainer{
    /*position: relative;*/
    text-align: center;
    color: white;
}
.centerText{
    font-family: 'archivo_blackregular';
    font-size: 310%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
a {color: white;}
a:visited {color: white;}
a:hover {color: white;}
a:active{color: white;}
/*
.row{
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}
.column{
    flex: 50%;
    padding: 0 4px;
}
.column img{
    margin-top: 8px;
    margin-left: 9%;
    margin-bottom: 4%;
    vertical-align: middle;
    width: 500;
    height: 600;
}
*/

.carousel > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

.slide {
    position: absolute;
    opacity: 0;
    transition: 200ms opacity ease-in-out;
    transition-delay: 200ms;
}

.slide > img {
    position: fixed;
    display: block;
    width: 40vw;
    height: 85vh;
    left: 30vw;
    top: 10vh;
    object-fit: cover;
    object-position: center;
}

.slide[data-active] {
    opacity: 1;
    z-index: 2;
    transition-delay: 0ms;
}

.carousel-button {
    position: fixed;
    z-index: 3;
    background: none;
    border: none;
    font-size: 18rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(0, 0, 0);
    cursor: pointer;
    border-radius: .25rem;
    padding: 0;
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}
footer {
    text-align: center;
}
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
  }
.fa:hover {
    opacity: 0.7;
}
.fa-instagram {
    background: #125688;
    color: white;
  }
@media screen and (max-width: 1750px) {
    #workdiv{
        right: 12%;
    }
}
@media screen and (max-width: 1180px) {
    .slide > img{
        top: 7vh;
        left: 12vw;
        width: 76vw;
    }
    .carousel-button{
        font-size: 9rem;
    }
    .carousel-button.next{
        right: 0rem;
    }
    .carousel-button.prev{
        left: 0rem;
    }
}
@media screen and (max-width: 1000px) {
    #workdiv{
        right: 15%;
    }
}
@media screen and (max-width: 912px) {
    .flexdiv{
        width: 79vw;
        height: 79vh;
    }
}
@media screen and (max-width: 820px) {
    .flexdiv{
        height: 71vh;
        width: 68vw;
    }
}
@media screen and (max-width: 799px) {
    #hometitlediv{
        font-size: 35px;
    }
    #workdiv{
        right: 19%;
    }
}
@media screen and (max-width: 540px) {
    #hometitlediv{
        font-size: 31px;
    }
    #contactswork{
        font-size: 20px;
    }
    .flexdiv{
        height: 76vh;
        width: 68vw;
    }
}
@media screen and (max-width: 500px) {
    #workdiv{
        right: 26%;
    }
}
@media screen and (max-width: 450px) {
    #workdiv{
        top: 73%;
        right: 28%;
    }
    #contactdiv{
        top: 73%;
    }
    .flexdiv{
        width: 79vw;
        height: 59vh;
    }
}
@media screen and (max-width: 414px) {
    #contactswork{
        font-size: 25px;
    }
}
@media screen and (max-width: 412px) {
    #workdiv{
        top: 64%;
    }
    #contactdiv{
        top: 64%;
    }
    #contactswork{
        font-size: 25px;
    }
}
@media screen and (max-width: 390px) {
    #workdiv{
        top: 67%;
        right: 30%;
    }
    #contactdiv{
        top: 67%;
    }
    .carousel-button.next{
        right: 0rem;
    }
    .carousel-button.prev{
        left: 0rem;
    }
    .carousel-button{
        font-size: 9rem;
    }
    .slide > img{
        width: 74vw;
        height: 77vh;
        left: 13vw;
        top: 15vh;
    }
}
@media screen and (max-width: 375px) {
    #workdiv{
        top: 84%;
        right: 26%;
    }
    #contactdiv{
        top: 84%;
    }
    #contactswork{
        font-size: 20px;
    }
}
@media screen and (max-width: 360px) {
    #workdiv{
        top: 20%;
        right: 28%;
    }
    #contactdiv{
        top: 20%;
    }
}
@media screen and (max-width: 280px) {
    #workdiv{
        right: 31%;
    }
    #hometitlediv{
        font-size: 28px;
    }
    #contactswork{
        font-size: 19px;
    }
}
