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

body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}

.main {
    background-color: hsl(218, 23%, 16%);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    width: 550px;
    height: fit-content;
    background-color: hsl(217, 19%, 24%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    text-align: center;
}

.id {
    color: hsl(150, 100%, 66%);
    letter-spacing: .3em;
    margin-top: 3em;
    text-transform: uppercase;
    font-weight: 100;
    font-size: small
}

#adviceText {
    color: hsl(193, 38%, 86%);
}

.dividerLong {
    margin: 1.5em 0;
}

.dividerSmall {
    display: none;
}

button {
    background-color: hsl(150, 100%, 66%);
    height: auto;
    width: auto;
    border-radius: 50%;
    padding: 1.5em;
    border: none;
    margin-bottom: -35px;
    margin-top: 1em;
}

button:active,
button:hover {
    cursor: pointer;
    box-shadow: 0 0 30px hsl(150, 100%, 66%);
}

@media screen and (max-width: 590px) {
    .container {
        margin: 1em;

    }

    .dividerLong {
        display: none;
    }

    .dividerSmall {
        display: flex;
    }
}