:root {
    --background: #18191A;
    --footerBg: #111213;
    --card: #242526;
    --cardHover: #3A3B3C;
    --primaryText: #E4E6EB;
    --secondaryText: #B0B3B8;
}

@media only screen and (max-width: 1000px) {

    body {
        font-family: 'Raleway', sans-serif;
        color: var(--primaryText);
        background-color: var(--background);
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    #whiteoutContainer {
        z-index: 69420;
        top: 0px;
        left: 0px;
        position: absolute;
        transition: 0.8s;
        width: 100%;
        height: 100%;
        background-color: var(--background);
    }

    #headerContainer {
        position: fixed;
        background-color: var(--background);
        font-size: 20px;
        text-align: center;
        height: 150px;
        width: 100%;
        left: 0px;
        top: -10px;  
        transition: 0.5s;
        z-index: 256;
    }

    #title {
        transition: 0.5s;
        font-size: 40px;
        position: relative;
        font-family: 'Oxygen', sans-serif;
        color: var(--primaryText);
    }

    #about, #contact, #projects {
        position: relative;
        top: -200px;
    }

    .headerMenuButton {
        position: relative;
        transition: 0.9s;
        text-decoration: none;
        color: var(--secondaryText);
        top: -10px;
        font-size: 23px;
        margin-right: 15px;
        margin-left: 15px;
        text-align: center;
    }

    #bodyContainer {
        position: relative;
        text-align: center;
        left: 0px;
        top: 150px;
        width: 100%;
        height: 100%;
    }

    .interContentSpacer {
        margin-bottom: 150px;
    }

    .infoContainer {
        background-color: var(--card);
        position: relative;
        border-radius: 25px;
        width: 80%;
        left: 10%;
        padding-bottom: 30px;
        box-shadow: 0px 25px 50px #111;
    }

    #projectContainer {
        position: relative;
        margin-top: 100px;
    }

    .infoContainer .header {
        position: relative;
        width: 95%;
        left: 2.5%;
        padding-top: 30px;
        font-size: 50px;
    }

    .infoContainer .header2 {
        position: relative;
        width: 95%;
        left: 2.5%;
        padding-top: 30px;
        font-size: 35px;
    }

    .infoContainer .desc {
        position: relative;
        font-size: 30px;
        width: 95%;
        left: 2.5%;
        color: var(--primaryText);
    }

    .infoContainer .subheader {
        position: relative;
        font-size: 40px;
        width: 95%;
        left: 2.5%;
    }

    .infoContainer .link {
        position: relative;
        font-size: 25px;
        color: var(--secondaryText)
    }

    .spacer {
        position: relative;
        margin-top: 30px;
        margin-bottom: 30px;
        width: 30%;
        left: 35%;
        border-bottom: 2px solid var(--secondaryText);
    }
    
    .spacer2 {
        position: relative;
        margin-top: 30px;
        margin-bottom: 30px;
        border-bottom: 2px solid var(--secondaryText);
        width: 100%;
        left: 0%;
    }

    .socialButton {
        display: inline-flex;
        font-size: 40px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .linkCard {
        position: relative;
        transition: .4s;
        border: 2px solid;
        top: 200px;
        height: 90px;
        width: 300px;
        left: calc(50% - 150px);
        margin-bottom: 50px;
        text-align: center;
        border-radius: 50px;
    }

    .linkCard:hover {
        background-color: var(--cardHover);
    }

    .linkCardTitle {
        margin-top: 25px;
        margin-left: 60px;
        font-size: 30px;
    }
    
    .linkCard i {
        position: relative;
        left: -110px;
        top: -53.5px;
        width: 80px;
        height: 90px;
        font-size: 35px;
    }

    /* photos.php */

    .photo {
        width: 200px;
        height: 200px;
        background-color: var(--card);
        border-radius: 5px;
        padding: 10px 0px;
        text-align: center;
        transition: 0.5s;
    }

    .photo:hover {
        background-color: var(--cardHover);
    }
    
    .photo img {
        background-color: var(--cardHover);
        width: 150px;
        height: 150px;
        position: relative;
        border-radius: 3px;
    }

  ::-webkit-scrollbar {
        width: 4px;
    }
    ::-webkit-scrollbar-track {
        background: white;
    }
    ::-webkit-scrollbar-thumb {
        background: #444;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

}


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

    body {
        font-family: 'Raleway', sans-serif;
        color: var(--primaryText);
        background-color: var(--background); 
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    #whiteoutContainer {
        z-index: 69420;
        top: 0px;
        left: 0px;
        position: absolute;
        transition: 0.8s;
        width: 100%;
        height: 100%;
        background-color: var(--background);
    }

    #headerContainer {
        position: fixed;
        background-color: var(--background);
        font-size: 20px;
        text-align: center;
        height: 150px;
        width: 100%;
        left: 0px;
        top: -10px;  
        transition: 0.5s;
        z-index: 256;
    }

    #title {
        transition: 0.5s;
        font-size: 40px;
        position: relative;
        font-family: 'Oxygen', sans-serif;
        color: var(--primaryText);
    }

    #about, #contact, #projects {
        position: relative;
        top: -200px;
    }

    .headerMenuButton {
        position: relative;
        transition: 0.9s;
        text-decoration: none;
        color: var(--secondaryText);
        top: -10px;
        font-size: 25px;
        margin-right: 20px;
        margin-left: 20px;
        text-align: center;
        &:hover { cursor: pointer; }
    }

    #bodyContainer {
        position: relative;
        text-align: center;
        left: 0px;
        top: 150px;
        width: 100%;
        height: 100%;
    }

    .interContentSpacer {
        padding-bottom: 150px;
    }

    .infoContainer {
        background-color: var(--card);
        position: relative;
        border-radius: 25px;
        width: 50%;
        left: 25%;
        padding-bottom: 30px;   
        box-shadow: 0px 25px 50px #111;
    }

    #projectContainer {
        position: relative;
    }

    .infoContainer .header {
        position: relative;
        width: 95%;
        left: 2.5%;
        padding-top: 30px;
        font-size: 50px;
    }

    .infoContainer .header2 {
        position: relative;
        width: 95%;
        left: 2.5%;
        padding-top: 30px;
        font-size: 35px;
    }


    .infoContainer .desc {
        position: relative;
        font-size: 30px;
        width: 95%;
        left: 2.5%;
        color: var(--primaryText);
    }

    .infoContainer .subheader {
        position: relative;
        font-size: 40px;
        width: 95%;
        left: 2.5%;
    }

    .infoContainer .link {
        position: relative;
        font-size: 25px;
        color: var(--secondaryText);
    }

    .spacer {
        position: relative;
        margin-top: 30px;
        margin-bottom: 30px;
        width: 10%;
        left: 45%;
        border-bottom: 2px solid var(--secondaryText);
    }

    .spacer2 {
        position: relative;
        margin-top: 30px;
        margin-bottom: 30px;
        border-bottom: 2px solid var(--secondaryText);
        width: 100%;
        left: 0%;
    }

    .socialButton {
        display: inline-flex;
        font-size: 40px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .linkCard {
        position: relative;
        transition: .4s;
        border: 2px solid;
        top: 180px;
        width: 300px;
        height: 90px;
        left: calc(50% - 150px);
        margin-bottom: 50px;
        text-align: center;
        border-radius: 50px;
    }

    .linkCard:hover {
        background-color: var(--cardHover);
        cursor: pointer;
    }

    .linkCardTitle {
        margin-top: 25px;
        margin-left: 80px;
        font-size: 30px;
    }
    
    .linkCard i {
        position: relative;
        left: -110px;
        top: -53.5px;
        width: 90px;
        height: 90px;
        font-size: 35px;
    }

    /* photos.php */

    .photo {
        width: 250px;
        height: 250px;
        background-color: var(--card);
        border-radius: 5px;
        padding: 15px 0px;
        text-align: center;
        transition: 0.5s;
    }

    .photo:hover {
        background-color: var(--cardHover);
        cursor: pointer;
    }
    
    .photo img {
        background-color: var(--cardHover);
        width: 200px;
        height: 200px;
        position: relative;
        border-radius: 3px;
    }

    
    ::-webkit-scrollbar {
        width: 4px;
    }
    ::-webkit-scrollbar-track {
        background: white;
    }
    ::-webkit-scrollbar-thumb {
        background: #444;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

}


/* for download.html */
#downloadContainer {
    a {
        color: #5ca3a9;
    }

    h2 {
        text-decoration: underline;
    }

    position: relative;
    width: 90%;
    top: 30px;
    left: 5%;
    padding: 15px 0px 50px 0px;
    margin-bottom: 300px;
    border: 7px solid var(--footerBg);
    border-radius: 15px;
    text-align: center;
}