*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(218, 23%, 16%);
    flex-direction: column;
}

.dialog-box {
    height: 50%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: hsl(217, 19%, 24%);
}

.advice-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20%;
    width: 100%;
    font-family: Roboto;
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
}

.advice-counter span {
    margin-left: 1rem;
}

.advice-container {
    height: 60%;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advice-container{
    font-size: 1.3rem;
    font-family: roboto;
    color: hsl(150, 100%, 66%);
}

.divider {
    height: 30%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider img {
    width: 80%;
}

.roll img {
    margin-top: -20px;
    padding: 1rem;
    background-color: hsl(150, 100%, 66%);
    border-radius: 40%;
}

.roll .hover:hover {
    margin-top: -20px;
    padding: 1rem;
    background-color: hsl(150, 100%, 66%);
    border-radius: 40%;
    box-shadow: 1px 1px 10px hsl(150, 100%, 66%);
}

@media (min-width: 350px) and (max-width:750px) {
    .dialog-box {
        height: 50%;
        width: 90%;
    }
    .advice-container {
        font-size: 1.5rem;
    }
}