body {
    background-color: black;
    width: 99%;
}

.centerImage {
    display: flex;
    justify-content: center;
}

@font-face {
    font-family: Typewriter; /* set name */
    src: url(assets/fonts/rough_typewriter.otf); /* url of the font */
}

@media (min-width:320px){
    img {
        width: 75vw;
        height: auto;
    }
    
    h2 {
        font-family: Typewriter;
        font-size: 10vw;
        text-align: center;
        color: #FF7F32;
    }
}

@media (min-width:568px){
    img {
        width: 65vw;
        height: auto;
    }
    
    h2 {
        font-family: Typewriter;
        font-size: 8.5vw;
        text-align: center;
        color: #FF7F32;
    }
}

@media (min-width:768px){
    img {
        width: 40vw;
        height: auto;
    }
    
    h2 {
        font-family: Typewriter;
        font-size: 4.5vw;
        text-align: center;
        color: #FF7F32;
    }
}

@media (min-width:1024px){
    img {
        width: 17.5vw;
        height: auto;
    }
    
    h2 {
        font-family: Typewriter;
        font-size: 2.15vw;
        text-align: center;
        color: #FF7F32;
    }
}

@media (min-width:1300px){
    img {
        width: 13.5vw;
        height: auto;
    }
    
    h2 {
        font-family: Typewriter;
        font-size: 1.75vw;
        text-align: center;
        color: #FF7F32;
    }
}

a:link {
    color: #FF7F32;
    text-decoration: none;
  }
  
  /* visited link */
  a:visited {
    color: #FF7F32;
  }
  
  /* mouse over link */
  a:hover {
    color: #FF7F32;
    border: 1px;
    border-style: solid;
}
  
  /* selected link */
  a:active {
    color: black;
  }