body {
  background-color: #F3F1E9;
  text-align: center;
}
.center {
    margin: auto;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; 
    height: 100%;
}
h1 {
    font-family: verdana;
    font-size:2vw;
    margin: 10px;
}
a {
    font-family: verdana;
    font-size:1vw;
    color: black;
}
p {
  font-family: verdana;
  font-size: 2vw
}

.logo {
    width: 25%;
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 1024px) {
    p, a {
        font-size: 6vw
    }
    h1 {
        font-size: 8vw;
    }
}