html {
    /* background-color: #5E6180; */
    color: #292E33;
    background-image: url("dalle-clouds.webp");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}
body {
    display: inline;
}

header {
    display: flex;
    justify-content: center;
}

.sample-phrases {
    margin-bottom: 2em;
    margin-top: 2em;
}

.phrase {
    font-style: italic;
}

a.button img {
    max-height: 2rem;
    padding-right: 0.5em;
}

/* .icon {
    display: flex;
} */

.icon img {
    max-height: 10rem;
    /* padding-right: 0.5em; */
}


.center-content {
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
    font-family: 'B612', sans-serif;
    /* box-sizing: border-box; */
    margin: auto;
    width: 55%;
    padding: 2em;
    text-align: center;
}

a.button {
    background-color: #292E33;
    border-radius: 5px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 820px) {
    a.button {
        font-size: 1rem;
        width: 80%;
    }
    .center-content {
        margin-top: 30vh;
    }
}

@media (min-width: 821px) {
    a.button {
        font-size: 1.5rem;
        margin-top: 2em;
        width: 30%;
    }
    .center-content {
        margin-top: 40vh;
        justify-content: center;
    }
}