html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    color: #505050;
    font-weight: 500;
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.blockquote {
    font-size: 2rem; 
    max-width: 50%;
    letter-spacing: 1px;
    margin-top: auto;
    margin-bottom: auto;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.first, .second, .third {
    width: 100%;
    padding: 1rem;
}


.first {
    height: 50vh;
    background-color: #eaeaea;
    display: flex;
    justify-content: center;
}

.second {
    height: 50vh;

    background-color: silver;
}

@media only screen and (max-width: 600px) {

    .first {
        height: 100vh;
    }

    .blockquote {
        max-width: 100%;
    }
 }
