html, body {
    padding: 0;
    margin: 0;
    background-color: #2d3045;
    transition: background-color cubic-bezier(0, 0.55, 0.35, 1) 250ms;
}

body.buzz {
    background-color: rgb(0, 255, 150);
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.buttonTop {
    width: 60vw;
    height: 60vw;
    border-radius: 40%;
    background-color: #bd0000;
    @media screen and (min-width: 800px) {
        width: 60vh;
        height: 60vh;
    }
}

.buttonBottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 65vw;
    height: 65vw;
    @media screen and (min-width: 800px) {
        width: 65vh;
        height: 65vh;
    }
    border-radius: 40%;
    background-color: #6d0000;
    box-shadow: #000000 4px 20px 50px;
}