* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #141519;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container {
    display: grid;
    height: 100dvh;
    place-items: center;
}

.rating-section {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.content {
    width: 350px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    background: #232535;
    background: radial-gradient(at center top, #222933, #161E29);
    padding: 30px;
    border-radius: 20px;
}

.buttons_rating {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.star {
    background-color: #262F38;
    padding: 15px;
    border-radius: 100%;
    width: 20px;
}

.rating {
    background-color: #262F38;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    color: #817f7f;

    &:hover {
        color: white;
        background-color: #817f7f;
    }

    &:focus {
        background-color: orange;
        color: white;
    }
}

.button {
    padding: 15px 0;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 40px;
    border: none;
    letter-spacing: 2px;
    cursor: pointer;
    transition-property: color, background-color;
    transition-duration: 200ms;
    transition-timing-function: ease-in-out;
}

.paragraph {
    color: #817f7f;
}

.submit {
    background-color: orange;
    color: white;
    width: 100%;

    &:hover {
        color: orange;
        background-color: white;
    }
}

.selection {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
}

.hidden {
    display: none;
}

.selected {
    padding: 5px 15px;
    background-color: #222933;
    border-radius: 20px;
    color: orange;
}

.ilustration {
    width: 120px;
    height: auto;
}

.center {
    text-align: center;
}

/* FOOTER */
.attribution {
    position: fixed;
    width: 100%;
    height: 50px;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.attribution a {
    text-decoration: none;
    color: #817f7f;
    transition: color ease-in-out 300ms;

}

.attribution a:hover {
    color: white;
}