body {
    position: absolute;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    
    /* window height - titlebar height */
    background-color: #52AA5E;
    
    margin: 0;
}

.main-button {
    text-align: center;
    position: relative;
    padding-top: 130px;
}

.main-button figure {
    margin-top: 100px;
    transform: translate(0, -50%)
}

.main-button-icon {
    width: 50px;
    padding: 10px;
    margin-bottom: 1em;
    background-color: #52AA8A;
    opacity: 0.8;
    box-shadow: inset 2px 2px rgba(255, 255, 255, 0.5),
                inset -2px -2px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    
    cursor: pointer;
    user-select: none;
}

.main-button figcaption {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: xx-large;
    /* line-height: 1em; */
}

.main-button:hover .main-button-icon{
    opacity: 1;
    filter: contrast(75%) brightness(150%)
            drop-shadow(0 0 10px white) !important;
}

#interagir, #social {
    background-color: #52AA5E;
}

#pedir-comida {
    flex-grow: 3;
    background-color: #8ACE8E;
    border-radius: 0 0 50px 50px;
}

#pedir-comida .main-button-icon {
    width: 100px;
    opacity: 1;
    /* filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5)); */
}