*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

:root{
--LightCyan: hsl(193, 38%, 86%);
--NeonGreen: hsl(150, 100%, 66%);
--GrayishBlue: hsl(217, 19%, 38%);
--DarkGrayish: hsl(217, 19%, 24%);
--DarkBlue: hsl(218, 23%, 16%);
}

body{
    height: 100vh;
    background-color: var(--DarkBlue);
}
.wrap{
    height: 100vh;
}

.box{
    padding: 20px;
    background-color: var(--DarkGrayish);
    margin: auto 0;
    color: var(--LightCyan);
    border-radius: 10px;
}
.divider{
    width: 100%;
    min-height:20px;
    background-image: url('./images/pattern-divider-desktop.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.botao{
    max-width: fit-content;
    background-color: var(--NeonGreen);
    padding: 15px;
    border-radius: 100%;
    margin: 0 auto;
    transform: translateY(50px);
    }

.botao:hover{
    cursor: pointer;
    box-shadow: 0 0 15px 2px var(--NeonGreen);
}

#advice-title{
    color: var(--NeonGreen);
    font-weight: 800;
}

#advice-text{
    color: var(--LightCyan);
    font-weight: 800;
    font-size: 28px;
}

.attribution{
    color: var(--LightCyan);
    font-size: 11px;
    text-align: center;
}

.attribution a{
    color: var(--NeonGreen);
}