@import url(https://fonts.google.com/specimen/Manrope);

body {
    background: hsl(218, 23%, 16%);
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: "Manrope", sans-serif;
}

.card {
    background: hsl(217, 19%, 24%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem .5rem 2rem;
    border-radius: 7px;
    height: fit-content;
    
}

.dice-btn {
    border-radius: 50%;
    width: fit-content;
    align-self: center;
    background: hsl(150, 100%, 66%);
    padding: 1rem;
    height: fit-content;
    border: none;
    position: relative;
    top: 4rem;
}

.advice-text {
    color: hsl(193, 38%, 86%);
    font-size: 28px;
    font-weight: 800;
    text-wrap: wrap;
    text-align: center;
}

.advice-number {
    color: hsl(150, 100%, 66%);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .7rem;
}

@media all and (min-width: 1000px) {
    
    .dice-btn{
        cursor: pointer;
    }
    .dice-btn:hover {
        box-shadow: 0 0 10px hsl(150, 100%, 66%);
        transition: .3s ease-in;
    }
    
}
