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

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

:root {
    --font: 'Manrope', sans-serif;
    --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%);
}

body {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--Dark-Blue);
}

main {
    width: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: var(--Dark-Grayish-Blue);
    padding: 3rem;
    border-radius: 15px;
    position: relative;
}

.titulo {
    display: flex;
    align-items: center;
    gap: .5rem;
}

h1, .numero-conselho {
    font-family: var(--font);
    font-size: 16px;
    color: var(--Neon-Green);
    text-transform: uppercase;
    letter-spacing: 5px;
}

.conselho {
    color: var(--Light-Cyan);
    text-align: center;
    font-family: var(--font);
    font-size: 28px;
    margin: 1rem 0;
}

.divisor {
    background: url('./images/pattern-divider-desktop.svg') no-repeat;
    background-size: contain;
    margin-bottom: 1rem;
    width: 100%;
    height: 20px;
}

.botao {
    border: none;
    background: var(--Neon-Green);
    width: 4rem;
    height: 4rem;
    border-radius: 2rem;
    position: absolute;
    bottom: -2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.botao:hover {
    box-shadow: 0 0 40px rgba(82, 255, 168, .75)
}

.imagem-botao {
    color: var(--Dark-Grayish-Blue);
    margin-bottom: -3px;
}

.attribution {
    font-family: var(--font);
    font-size: 11px;
    text-align: center;
    color: var(--Light-Cyan);
    position: absolute;
    bottom: 5px;
    width: 100%;
}

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

@media screen and (max-width: 580px) {
    main {
        width: 310px;
    }

    h1, .numero-conselho {
        font-size: 14px;
    }
    
    .conselho {
        font-size: 22px;
    }

    .divisor {
        background: url('./images/pattern-divider-mobile.svg') no-repeat;
        background-size: contain;
    }
}