
    .attribution { font-size: 11px; text-align: center; }
    .attribution a { color: hsl(228, 45%, 44%); }

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

body{
    font-family: "Manrope", sans-serif;
    font-size: 1.75rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: hsl(218, 23%, 16%);
}

h1{
    font-size: 1.5rem;
    text-shadow: 0 0 2px gray;
    color: hsl(193, 38%, 86%)
;
}
.main-container{
    width: 90vw;
    height: 350px;
    border-radius: 20px;
    background-color:  hsl(217, 19%, 24%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
}

.advice-id{
    color: hsl(150, 100%, 66%);
    font-size: 1rem;
}

.button-elm{
    background-color: hsl(150, 100%, 66%);
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: -80px;
    cursor: pointer;
}

.button-elm:hover{
    box-shadow: 0 0 30px hsl(150, 100%, 66%);
}

@media(min-width: 768px){
    .main-container{
        width: 70vw;
    }

}
