html,body{
    padding: 0;
    margin: 0;
    background-color: #d8d8d8;
}
@font-face {
    font-family: 'inknut_antiquaregular';
    src: url('inknutantiqua-regular-webfont.woff2') format('woff2'),
         url('inknutantiqua-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
header{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    position: absolute;
    top: 0;
    z-index: 1;
    pointer-events: none;
}
h1{
    font-family: inknut_antiquaregular;
    font-size: 4rem;
    margin: 0;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}
@media only screen and (max-width:800px) {
    h1{
        font-size: 2.5rem;
    }
}
@media only screen and (max-width:500px) {
    h1{
        font-size: 1.25rem;
    }
}
.threeD{
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: green;
    background-color: black;
}
.cta{
    position: fixed;
    z-index:2;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 2px;
    padding: 0.5rem;
    font-family: inknut_antiquaregular;
    font-size: 0.8rem;
    cursor: pointer;    
}
.renderButton{
    position: fixed;
    z-index: 2;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 2px;
    padding: 0.5rem;
    font-family: inknut_antiquaregular;
    font-size: 0.8rem;
    cursor: pointer;
}