body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-repeat:no-repeat;
    background-attachment: fixed;
    color: white;
    background: #000   
}

#preloader {
    background: #000;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}
#center-view {
    margin: 0;
    background-color: rgb(0, 0, 0);
    position: fixed;
    height: 100%;
    width: 100%;
    padding: 0;
    overflow: auto;
    color: white;
    font-family: sans-serif;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-content: center;
    flex-grow: 1;
    z-index: 1;
}

.topnav {
    padding-top: 1%;
}

#socials {
    display: flex;
    flex-direction: row;
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding-left: 7.5%;
}

#social-title {
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
}

.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;

    transition: color background-color;
    transition-duration: 0.3s;
}

.topnav a:hover {
    background-color: rgb(232, 232, 232);
    color: black;
    transition:  color background-color;
    transition-duration: 0.3s;
}

.topnav a.active {
    border-bottom: 3px solid rgb(208, 207, 140);
}

#topnav-right {
    float: right;
    padding-right: 7.5%;
}

#social {
    float: left;
    padding-top: 1%;
    padding-left: 5%;
    padding-right: 30%;
}

.social-link {
    height: 30px;
    width: 25px;
    font-size: 1.75em !important;
    padding: 9px 16px !important;
}

#contact-email {
    height: 48px;
    width: 40px;
    padding: 0px 6px 0px 11px !important;
    font-size: 2.1em !important;
    display: flex;
}


img {
    max-width:100%;
    max-height:100%;
    height: 100vh;
    border-radius: inherit;
    filter: brightness(90%)
}

li {
    float: right;
    display: block;
    padding: 8px;
    padding-top: 3%;
    height: 80px;
    width: 80px;
}

/* width */
::-webkit-scrollbar {
    width: 20px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(223, 223, 223); 
    background-color: rgb(72, 72, 72);
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(232, 214, 183); 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(199, 175, 134); 
  }

#menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    float: right;
    height: 48px;
    width: 45px;
    padding: 0px 6px 0px 6px !important;
    margin-right: 10%;
    transition: color background-color;
    transition-duration: 0.3s;
}

.menu-bar {
    width: 28px;
    height: 3px;
    background-color: #f2f2f2;
    margin: 2.5px 0;
    transition: color background-color;
    transition-duration: 0.3s;
    pointer-events:none;
}

/* On screens that are 600px wide or less, the background color is olive */
@media screen and (max-width: 850px) {
    #topnav-right {
        display: none;
        flex-direction: column;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid white;
    }

    #topnav-right a {
        border-top: 1px solid white;
        justify-content: center;
    }

    #menu {
        display: flex;
        position: absolute;
        right: 5px;
        margin-right: 5%;
    }

    #menu:hover {
        background-color: rgb(232, 232, 232);
        cursor: pointer;
    }

    #menu:hover .menu-bar {
        background-color: black;
        transition: color background-color;
        transition-duration: 0.3s;
    }

    .active {
        display: flex !important;
    }
/*
    #preloader {
        background: #000 url(preloaderSmall.mp4) no-repeat center center;
    }*/
}

@media screen and (max-width: 450px) {
    #social-title {
        display: none;
    }
}

@media screen and (max-width: 290px) {
    .social-link {
        height: 25px;
        width: 20px;
        font-size: 1.5em !important;
        padding: 10px !important;
    }

    #contact-email {
        height: 25px;
        width: 20px;
        padding: 10px !important;
        font-size: 1.75em !important;
        justify-content: center;
        align-items: center;
    }

    #menu {
        height: 40px;
        width: 36px;
        padding: 0px 2px 0px 2px !important;
        margin-right: 7%;
        right: 0px;
    }

    .menu-bar {
        width: 22px;
        height: 2px;
        background-color: #f2f2f2;
        margin: 2.5px 0;
        transition: color background-color;
        transition-duration: 0.3s;
        pointer-events:none;
    }

    ::-webkit-scrollbar {
        width: 10px;
      }
}

@media screen and (max-width: 210px) {
    #socials {
        display: none !important;
    }

    #topnav-right {
        margin-top: 40px;
    }
}