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


:root{
    --light-p-cyan:hsl(193, 38%, 86%);
    --neon-p-green:hsl(150, 100%, 66%);

    --Grayish-Blue: hsl(217, 19%, 38%);
    --Dark-Grayish-Blue: hsl(219, 19%, 24%);
    --Dark-Blue: hsl(218, 23%, 16%);
}

body{
    font-family: 'Manrope', sans-serif;
    background-color: hsl(218, 23%, 16%) ;
    color:  hsl(218, 23%, 16%);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: var(--Dark-Grayish-Blue);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    max-width: 500px;
    width: 80%;
    
}

.advice-id {
    color: var(--neon-p-green);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.advice {
    font-size: 1.5rem;
    margin: 50px 0;
}

.btn {
    background-color: var(--neon-p-green);
    border: none;
    border-radius: 50%;
    padding: 1rem;
    cursor: pointer;
    position: relative;
    top: 3.1rem;
    transition: all 300ms ease;
    
}
#advice-text{
    color: white;
}
.cotation{
    font-size: 40px;
}

.btn img {
    width: 24px;
    height: 24px;
}
.btn:hover::after,.btn:focus-visible:before {
    content: "";
    position: absolute;
    inset: 0;
    width: inherit;
    height: inherit;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.5;
    transition: all 300ms ease;
}
body{
    font-family: 'Manrope', sans-serif;
    background-color: var(--light-p-cyan);
    color: var(--Grayish-Blue);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 400px) {
    
    .advice {
        font-size: 0.8rem;
    }
    .advice-id {
        font-size: 0.75rem;
    }
    .cotation {
        font-size: 1.5rem;
    }
}

