/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@800&display=swap'); /* font-family: 'Manrope', sans-serif; */

/* COLORS */

:root {
    --Light-Cyan: hsl(193, 38%, 86%);
    --Neon-Green: hsl(150, 100%, 66%);
    --Grayish-Blue: hsl(217, 19%, 38%);
    --Dark-Grayish-Blue: hsl(217, 19%, 24%);
    --Dark-Blue: hsl(218, 23%, 16%);
}

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

/* CODE */

body {
    font-size: 28px;
    background-color: var(--Dark-Blue);
    font-family: 'Manrope', sans-serif;
}

.container {
    background-color: var(--Dark-Grayish-Blue);

    height: 100%;
    width: 90%;
    margin: 20vh auto 40px auto;

    padding: 20px;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    text-align: center;

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.divider img {
    position: relative;
    top: 25px;
    width: 100%;
    height: 100%;
}

.dice {
    position: relative;
    top: 50px;

    padding: 20px;
    width: 64px;
    border-radius: 50%;
    margin: auto;

    display: flex;
    justify-content: center;

    background-color: var(--Neon-Green);
}

.dice img {
    width: 24px;
    height: 24px;
}

.advice__number {
    color: var(--Neon-Green);
    font-size: 10px;
    letter-spacing: 4px;

    margin: 20px;
}

.advice {
    color: var(--Light-Cyan);
}

/* HOVER STATE */
.dice:hover {
    transition: 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: var(--Neon-Green) 0 0 30px;
}

/* DESKTOP */
@media (min-width: 500px) {
    .container {
        max-width: 540px;
        padding: 20px 40px 20px 40px;
    }

    .divider img {
        content: url(./images/pattern-divider-desktop.svg);
    }
}

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