@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@800&display=swap');
html {
    height: 100vh;
  }
  

body{
    background-color:hsl(218, 23%, 16%);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    place-content:center;
}
p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: hsl(150, 100%, 66%);;
}
.ids {
    margin-bottom: 33px;
}
.advice{
    margin-bottom: 61px;
}

.advice-container {
    background-color: hsl(217, 19%, 24%);
    text-align: center;
    width: min(91.45vw, 33.75rem);
    height: 100%;
    padding: 30px;
    border-radius: 15px;
    margin: auto;

}
.btn {
    position: relative;
    top: 50px;
    background: hsl(150, 100%, 66%);
    width: 6%;
    margin: auto;
    padding: 15px;
    border-radius: 56%;
}


.btn:active {
    box-shadow: 0 0 92px 19px hsl(150, 100%, 66%);
}
#advice-text {
    color: hsl(193, 38%, 86%);
    font-size: 28px;
}
.divider img {
    width: 100%;
}
@media screen and (max-width: 375px) {
    .advice-container{
        width: 78%;
    }
    .btn {
        width: 12%;
     
    }
    #advice-text {
        font-size: 19px;
    }
}