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

body {
    width: 100%;
    height: 100vh;
    background: hsl(218, 23%, 16%);
    font-family: "Manrope", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
padding: 0 20px;
}

main {
    min-width: 350px;
    max-width: 500px;
    height: fit-content;
    text-align: center;
    background: hsl(217, 19%, 24%);
    padding: 20px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

#advice {
    color: hsl(193, 38%, 86%);
    font-size: 1.75rem;
    margin: 1.5rem 0;
}

p {
    color: hsl(150, 100%, 66%);
}

.dice-btn{
    width: 33px;
   
}

.dice-container{
    background: hsl(150, 100%, 66%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 44%;
    top: 19%;
}