body {
    background-color: hsl(218, 23%, 16%);
    overflow: hidden;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: 45%;
    background-color: hsl(217, 19%, 24%);
    border-radius: 25px;
}

.title-advice {
    color: hsl(150, 100%, 66%);
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 3px;
    font-weight: 500;
    width: 300px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    margin-top: auto;
}

.text-advice {
    width: 100%;
    height: 70%;
    margin-bottom: 4px;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
    align-items: center; /* Centrar horizontalmente */
    justify-content: center; /* Centrar verticalmente */
}

.text-advice p {
    font-size: 30px;
    color: hsl(193, 38%, 86%);
    font-family: 'Manrope', sans-serif;
    width: 80%;
    height: 100%;
    text-align: center;
    line-height: 60px;
}

.text-advice img {
    position: absolute;
    bottom: 360px;
    width: 25%;
    height: 10px;
    z-index: 1; 
}

#change-advice {
    border: none;
    cursor: pointer;
    outline: none;
    width: 80px;
    background-color: hsl(150, 100%, 66%);
    position: relative;
    border-radius: 100%;
    width: 80px;
    height: 80px;
    bottom: 35px;
}

#change-advice img {
    width: 30px;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

button:hover {
    box-shadow: 0 0 10px 18px hsla(150, 100%, 66%, 0.2);
}
