* {
    margin: auto;
}
#root {
    height: 100vh;
    width: calc(100vw - 50);
    margin: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#images-div {
    height: 75%;
    max-width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#image {
    height: calc(100% - 50px);
    padding: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#text {
    font-size: 1.5rem;
}

#buttons-div button {
    height: 4rem;
    min-width: 8rem;

    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid;

    font-size: 1rem;
}
#buttons-div button:hover {

    background-color: #dddddd;
}
.disabled {
    display: none;
}

.enabled {
    display: initial;
}