@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

: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%);
}

html {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 28px;
    background-color: var(--dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    user-select: none;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: var(--dark-grayish-blue);
    max-width: 500px;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
}

.advice-text {
    display: block;
    color: var(--light-cyan);
    padding-top: 20px;
}

.advice-id {
    color: var(--neon-green);
    padding-top: 20px;
    font-size: 16px;
}

.advice-new {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--neon-green);
    color: var(--dark-blue);
    border-radius: 100%;
    transform: translateY(100%);
    width: 50px;
    height: 50px;
    margin-top: -20px;

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

.advice-new:hover {
    box-shadow:  0 0 50px var(--neon-green);
    cursor: pointer;
    transform: translateY(100%) scale(1.1);
}

.advice-divider {
    display: block;
    color: var(--light-cyan);
    padding-top: 20px;
}

.attribution {
    color: white;
    margin-top: 100px;
}