body {
    overflow: auto;
}

.background {
    background-size: cover;
    background-image: none;
    background-color: #c9e3e3;

    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100%;
    /* height: 100%; */
}

.main {
    width: 70%;
    height: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    word-wrap: break-word;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
    /* transition: margin-top, margin-bottom, width 0.25s ease-in-out; */
}

#icon {
    width: calc(373px / 4);
    height: calc(373px / 4);
}

/* .buttons {
    transition: flex-direction 0.5s ease-in-out; // doesn't work
    transition: transform 0.5s ease-in-out;
}

md-filled-button {
    transition: transform 0.5s ease-in-out;
} */

.note {
    margin-left: 10px;
}

@media (max-width: 515px) {
    .main {
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        border-radius: 0;
    }
}

@media (max-width: 350px) {
    .buttons {
        flex-direction: column;

        /* md-filled-button {
            transform: translateY(100%);
        } */
    }
}

html[data-theme="dark"] {
    .background {
        background-color: #1d1d1d;
    }

    .main {
        background-color: #2c2c2c;
    }
}