/*
### Primary

- Orange: hsl(25, 97%, 53%)

### Neutral

- White: hsl(0, 0%, 100%)
- Light Grey: hsl(217, 12%, 63%)
- Medium Grey: hsl(216, 12%, 54%)
- Dark Blue: hsl(213, 19%, 18%)
- Very Dark Blue: hsl(216, 12%, 8%)
*/

* {
    font-family: "Overpass", sans-serif;
    --orange: hsl(25, 97%, 53%);
    --white: hsl(0, 0%, 100%);
    --light-grey: hsl(217, 12%, 63%);
    --medium-grey: hsl(216, 12%, 54%);
    --dark-blue: hsl(213, 19%, 18%);
    --very-dark-blue: hsl(216, 12%, 8%);
}
body {
    background-color: black;
    font-size: 0.9375rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

main {
    display: flex;
    width: 80%;
    margin: auto;
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom, var(--dark-blue), var(--very-dark-blue));
    color: var(--white);
}

.star {
    padding: 0.7rem;
    border-radius: 50%;
    margin-left: 0.1rem;
    line-height: 0;
    width: fit-content;
    background-color: var(--very-dark-blue);
}

h1 {
    font-weight: 500;
    font-size: 1.8rem;
}

p {
    margin: 0;
    color: var(--light-grey);
    line-height: 1.5;
}



ul {
    padding: 0;
    display: flex;
    justify-content: space-around;
}

ul button {
    color: var(--light-grey);
    border: none;
    height: 0;
    font-size: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    
    border-radius: 50%;
    background-color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

ul button:hover {
    background-color: var(--medium-grey);
}

ul button.selected {
    background-color: var(--orange);
    color: var(--white);
}

.submit {
    background-color: var(--orange);
    color: var(--white);
    border: 0;
    border-radius: 4rem;
    width: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.7rem;
    transition: all 0.3s ease-in-out;
}

.submit:hover {
    background-color: var(--white);
    color: var(--orange);
}


main {
    max-width: 20rem;
}


.right  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.right h2 {
    margin: 0;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: hsla(25, 97%, 53%, 0.068);
    border-radius: 1rem;
    margin-top: 1.5rem;
    font-weight: 400;
    color: var(--orange);
}

.right p {
    text-align: center;
    padding-bottom: 1rem;
}

button:hover {
    cursor: pointer;
}

.attribution {
    color: var(--white);
}

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