#headerSpacer {
    height: calc(5vh + 15vw);
    max-height: calc(5vh + 125px);
}

#header {
    position: absolute;
    left: 0;
    top: 5vh;
    width: calc(100% - 0.8vh);
    height: 20vh;/*15vw;*/
    background-color: black;/*#363636;*/
    margin: 0;
    border: 0.4vh solid rgb(0, 255, 30);
    
    max-height: 125px;


}

#subheader {
    position: relative;
    bottom: calc(-3vh - 100px);
    margin-left: auto;
    margin-right: auto;
    width: 30vw;
    min-width: 325px;
    text-align: center;
    font-size: 8vh;
    font-weight: bold;
    color: rgb(71, 71, 71);
    background-color: #7cd97f;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border-radius: 0 0 2vh 2vh;
    z-index: -1;


}
#headerText {
    position: absolute;
    bottom: 1vh;
    left: calc(20vw + 4%);
    font-size: 4vw;
    color: white;
    font-family: Arial, sans-serif;
    text-shadow: 3px 3px black;
    letter-spacing: 1vw;
    font-weight: bold;
    width: 75%;
    
}
#headerLogo {
    position: absolute;
    width: 20vw;
    height: 20vw;
    border: 0.4vh solid rgb(0, 255, 30);
    border-radius: 50%;
    top: -2.5vw;
    left: 2%;
    background-color: black;
    overflow: hidden;

    max-width: 200px;
    max-height: 200px;

    
    animation: rotateLogo 15s linear 0s infinite normal forwards;
    
}

#headerLogo img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#spiderBody {
    position: absolute;
    width: 10%;
    height: 25%;
    top: calc(50% - 12.5%);
    left: calc(50% - 5%);
    border-radius: 50%;
    background-color: rgb(0, 255, 30);
}

@keyframes rotateLogo {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}