@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;800&display=swap');

body{
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    text-transform:uppercase;
    box-sizing: border-box;
    align-content: center;
    flex-wrap: center;
    text-align: center;
    float: center;
    justify-content: center;

    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
footer{
    font-size:smaller;
    font-weight: 600;
    margin-top: 30px;
}

img{
    padding-top:1em;
    min-width: 200px;
    height:auto;
}

div{
    margin: 20px;
    margin-left: 5vw;
    margin-right: 5vw;
}

#downloadButton{
    font-size:larger;
    cursor: pointer;
    padding:0vw;
}

#text{
    font-weight: 400;
    text-transform:none;
    margin-left: 20vw;
    margin-right: 20vw;
}




a:link {
    text-decoration: none;
    color:black;
    transition: color 0.3s ease-in-out;
  }
  
  a:hover {
    color:red;
  }

  a:target {
    color:rgb(107, 60, 60);
  }