:root {
    /* Colors */
    --white: #FFFFFF;
    --black:  #000000;
    --grey-950: #131518;
    --grey-900: #262E38;
    --grey-500: #969FAD;
    --orange-500: #FC7614;

    /* Typography */
    --tp1-font-size: 1.75rem;
    --tp1-line-height: 2.1875rem;
    --tp1-letter-spacing: 0rem;

    --tp2-font-size: 1.5rem;
    --tp2-line-height: 1.875rem;
    --tp2-letter-spacing: 0rem;

    --tp3-font-size: 1rem;
    --tp3-line-height: 1.5rem;
    --tp3-letter-spacing: .0125rem;

    --tp4-bold-font-size: .9375rem;
    --tp4-bold-line-height: 1.1875rem;
    --tp4-bold-letter-spacing: .125rem;

    --tp4-reg-font-size: .9375rem;
    --tp4-reg-line-height: 1.5rem;
    --tp4-reg-letter-spacing: 0rem;

    --tp5-bold-font-size: .875rem;
    --tp5-bold-line-height: 1.125rem;
    --tp5-bold-letter-spacing: .116875rem;

    --tp5-semi-font-size: .875rem;
    --tp5-semi-line-height: 1.5rem;
    --tp5-semi-letter-spacing: .010625rem;

    --tp5-reg-font-size: .875rem;
    --tp5-reg-line-height: 1.375rem;
    --tp5-reg-letter-spacing: 0rem;

}
* {
    font-family: 'Overpass';
}

body {
    background-color: var(--black);
    overflow-y: hidden;
}

.flex-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rating-container {
    background: radial-gradient(#232A34, #181E27);
    width: 20.4375rem;
    height: auto;
    padding: 1.5rem;
    border-radius: .825rem;
}

.star-container {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--grey-900);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 1rem;
}

h1 {
    width: 17.4375rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    font-size: var(--tp2-font-size);
    line-height: var(--tp2-line-height);
    letter-spacing: var(--tp2-letter-spacing);
    font-weight: bold;
    margin-top: 1.5rem;
}

.feedback {
    width: 17.4375rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--grey-500);
    font-size: var(--tp5-reg-font-size);
    line-height: var(--tp5-reg-line-height);
    letter-spacing: var(--tp5-reg-letter-spacing);
    margin-top: 1rem;
}

.btn-rating-container {
    width: 17.4375rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.rating-btn {
    width: 2.625rem;
    height: 2.625rem;
    border-style: none;
    border-radius: 50%;
    background-color: var(--grey-900);
    color: var(--grey-500);
    font-size: var(--tp5-bold-font-size);
    line-height: var(--tp5-bold-line-height);
    letter-spacing: var(--tp5-bold-letter-spacing);
    font-weight: bold;
}

.submit-btn-container {
    display: flex;
    justify-content: center;

}

.submit-btn {
    width: 17.4375rem;
    height: 2.8125rem;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--orange-500);
    border-radius: 2rem;
    border-style: none;
    color: var(--grey-950);
    font-size: var(--tp5-bold-font-size);
    line-height: var(--tp5-bold-line-height);
    letter-spacing: var(--tp5-bold-letter-spacing);
    font-weight: bold;
    text-transform: uppercase;
}

.thank-you-container{
    background: radial-gradient(#232A34, #181E27);
    width: 20.4375rem;
    height: auto;
    padding: 1.5rem;
    border-radius: .825rem;
}

.sub-img-container {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

.rating-selected-container {
    width: 10.5rem;
    height:2rem;
    background-color: var(--grey-900);
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.rating-selected {
    color: var(--orange-500);
    font-size: var(--tp5-reg-font-size);
    line-height: var(--tp5-reg-line-height);
    letter-spacing: var(--tp5-reg-letter-spacing);  
}

.message-container {
    width: 17.4375rem;
    margin-left: auto;
    margin-right: auto;
}

.thank-you {
    text-align: center;
}

.thank-you-message {
    text-align: center;
    color: var(--grey-500);
    font-size: var(--tp5-reg-font-size);
    line-height: var(--tp5-reg-line-height);
    letter-spacing: var(--tp5-reg-letter-spacing);
}

.hidden {
    display: none;
}

@media screen and (min-width: 1024px) {
    button:hover {
        background-color:var(--white);
    }
}

.chosen {
    background-color: var(--orange-500);
}
