body{
    padding:0;
    margin: 0;
    background-color: #222222;
    color: hsl(217, 12%, 63%);
    font-family: Overpass, Arial, Helvetica, sans-serif;
    font-size: 15px;
}
.container{
    /* border: 0.1px solid orange; */
    margin: 0 auto;
    max-width: 960px;
    box-sizing: border-box;
    padding: 0 16px;
    background-color: #333333;
}
header{
    margin-bottom: 32px;
    min-height: 64px;
    box-sizing: border-box;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    background-color: aquamarine;
}
nav{
    width: 50%;
    background-color:darkslategrey;
    text-align: right;
}
main{
    width: 60%;
    min-height: 2000px;
    background-color: cornsilk;
}
@media (max-width: 770px){
    main{
        width: 100%;
    }
}
@keyframes fade-in {
    from{opacity: 0;}
    to{opacity: 1;}
}
.pop-up-container{
    opacity: 0;
    /* display: none; */
    /* border: 0.1px solid yellow; */
    position: absolute;    
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    padding: 15vh 16px auto 16px;
    background-color: rgba(0,0,0,0.6);
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
.pop-up{
    /* display: none; */
    margin: 0 auto;
    max-width: 400px;
    padding: 32px;
    box-sizing: border-box;
    background-color: hsl(213, 19%, 18%);
    border-radius: 16px;
    position: sticky;
    position: -webkit-sticky;
    top: 32px;
    box-shadow: 0 1px 8px rgba(128, 128, 150, 0.3);
}
@media (max-width: 432px){
    .pop-up{
        margin: 0 16px;
    }
}
@media (max-width: 340px){
    .pop-up{
        padding: 16px;
    }
}
h1{
    color: white;
}
p{
    line-height: 160%;
}
main h1{
    color: #222222;
}
.mb-32{
    margin-bottom: 32px;
}
.mb-16{
    margin-bottom: 16px;
}
.circle{
    width: 48px;
    height: 48px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(208, 16%, 21%);
    border-radius: 100px;
}
.space-between{
    display: flex;
    justify-content: space-between;
}
.rating-options{
    display: flex;
    justify-content: space-between;
    /* border: 0.1px solid white; */
}
/* .rating-options button:hover{
    background-color:hsl(25, 97%, 53%);
    color: white;
} */
button{
    font-family: Overpass, Arial, Helvetica, sans-serif;
    color: hsl(217, 12%, 63%);
    font-size: 15px;
    border: 0;
}
.submit{
    background-color:hsl(25, 97%, 53%);
    color: white;
    letter-spacing: 2px;
    width: 100%;
    height: 48px;
    border-radius: 100px;
}
.submit:hover{
    background-color: white;
    color: hsl(25, 97%, 53%);
}
#thank-you{
    text-align: center;
    display: none;
}
.user-rating-message{
    padding: 8px 20px;
    display: inline-block;
    background-color: hsl(208, 16%, 21%);
    color: hsl(25, 97%, 53%);
    border-radius: 100px;
}

.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }