/* import font */

@font-face {
    font-family: prometoLight;
    src: url(fonts/Prometo.woff2) format('woff2'),
        url(fonts/Prometo.woff) format('woff'),
}

@font-face {
    font-family: chantalLight;
    src: url(fonts/ChantalLight.woff2) format('woff2'),
        url(fonts/ChantalLight.woff) format('woff'),
}


/* general */
#body{
    font-family: prometoLight, "Courier New", monospace;
    background-color: rgb(0, 0, 0);
    text-align: center;
    color: white;
}

#heading{
    font-family: chantalLight, "Courier New", monospace;
    margin-bottom: 5px;
    margin-top: 0px;
    color: white;
}

#footer{
    margin-bottom: 3vh;
    margin-top: 0px;
    font-size: 5vh;
}

#footer2{
    letter-spacing: 1px;
    font-size: 2.5vh;
}

#bodytext{
    font-size: 3.5vh;
    max-width: 105vh;
    margin-left: auto;
    margin-right: auto;

}

#image{
    margin: 4vh;
}


a.greenlink:link, a.greenlink:visited{
    color: lightgreen;
    background-color: transparent;
    text-decoration: none;
}

a.greenlink:hover {
    color: darkgreen;
}

a.whitelink:link, a.whitelink:visited{
    color: white;
    background-color: transparent;
    text-decoration: none;
  }

a.whitelink:hover{
    color: lightgreen;
}

/* desktop */
@media only screen and (min-width: 992px){ 

    #heading{
        font-size: 5vw;
    }
}

/* tablet / ipad */

@media only screen and (min-width: 768px) and (max-width: 991px){  

    #heading{
        font-size: 8vw;
    }
}

/* mobile */
@media only screen and (max-width: 767px){  


    #heading{
        font-size: 12vw;
    }
    #body{
        width: 100vw;
        overflow-x: hidden;
    }
}