body {
    font-family: 'Open Sans', sans-serif;
}

a {
    color: white;
    font-size: 22px;
    text-decoration: none;
    background-color: #358f5c;
    padding: 1rem;
    border-radius: .5rem;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.logo {
    max-width: 20%;
    margin-bottom: 2rem;
}

@media screen and (max-width:800px) {
    .logo {
        max-width: 50%;
    }
}

@media screen and (max-width:600px) {
    .logo {
        max-width: 80%;
    }

    a {
        font-size: 18px;
    }
}