@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,800;1,9..40,800&family=Manrope:wght@200..800&display=swap');
body {
    height: 100dvh;
    margin: 0;
    background-color: hsl(218, 23%, 16%);
    font-family: Manrope;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Card with button */
.content {
    width: 93%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container {
    width: 100%;
    height: 20.625rem;
    padding: 2.8125rem;
    box-sizing: border-box;
    border-radius: 1.25rem;
    background-color: hsl(217, 19%, 24%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.advice-id {
    margin: 0;
    color: hsl(150, 100%, 66%);
    font-size: 0.7rem;
    letter-spacing: 0.25rem;
}
.quote {
    margin: 0;
    color: hsl(193, 38%, 86%);
    font-size: 1.375rem;
}
/* Line */
.line-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.line-long {
    width: 45%;
    height: 1px;
    background-color: hsl(217, 19%, 38%);
}
.dot-1, .dot-2 {
    width: 0.375rem;
    height: 0.875rem;
    border-radius: 3px;
    background-color: hsl(193, 38%, 86%);
}
/* Button */
.dice-button {
    width: 4rem;
    height: 4rem;
    margin-top: -1.875rem;
    border: none;
    border-radius: 2rem;
    background-color: hsl(150, 100%, 66%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.dice-button img {
    width: 1.5rem;
    height: 1.5rem;
}
/* Mobile */
@media (max-width: 375px) {
    .container {
        height: 19.6875rem;
        padding: 1.5rem;
    }
    .quote {
        font-size: 1.25rem;
    }
    .id {
        font-size: 0.5rem;
    }
    .line-container {
        margin-bottom: 1.25rem;
    }
}
/* Large screens */
@media (max-width: 1440px) {
    .container {
        max-width: 29.6875rem;
    }
}
@media (min-width: 1441px) {
    .content {
        width: 60rem;
    }
    .container {
        height: 35rem;
        padding: 4.6875rem;
    }
    .advice-id {
        font-size: 1rem;
    }
    .quote {
        font-size: 2.75rem;
    }
    .dice-button {
        width: 6.25rem;
        height: 6.25rem;
        margin-top: -3.125rem;
        border-radius: 3.125rem;
    }
    .dice-button img {
        width: 2.25rem;
        height: 2.25rem;
    }
}