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

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    min-height: 100vh;
    background-color:  #141519;
    font-family: 'Overpass', sans-serif;
    display: flex;
    align-items: center;
}
.container{
    margin: 0 auto;
    max-width: 400px;
}

.card{
    background: linear-gradient( hsl(213, 19%, 18%), hsla(207, 6%, 30%, 0.144));
    padding: 20px 30px;
    border-radius: 15px;
    margin: 0 1em;
}

.icon{
    display: inline-block;
    margin: 10px 0 5px 0;
}

.icon img{
    width: 100%;
    padding: 10px;
    background-color: hsl(215, 18%, 21%) ;
    border-radius: 50%;
}

.card h2{
    color: #fff;
    font-size: 27px;
}

.card p{
    color: hsl(217, 12%, 63%);
    font-size: 15px;
    margin: 10px 0;
    font-weight: 400;
}

.ratings{
    width: 100%;
    margin: 25px 0;
}

.ratings ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

li{
    width: 50px;
    height: 50px;
    list-style: none;
    background-color: hsl(213, 19%, 18%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(217, 12%, 63%);
    cursor: pointer;
}

li:hover{
    color: #fff;
    background-color:  hsl(217, 12%, 63%);
}

li:active{
    background-color: hsl(25, 97%, 53%);
}

button{
    color: #fff;
    width: 100%;
    height: 40px;
    border-radius: 50px;
    border: none;
    outline: none;
    background-color: hsl(25, 97%, 53%);
    font-weight: 600;
    cursor: pointer;
    margin: 30px 0;
}
button:hover{
    background-color: #fff;
    color: hsl(25, 97%, 53%);
}
.content{
    display: block;
}

.message{
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.message img{
    width: 150px;
    margin: 20px 0;
}

.message .feedback{
    color: hsla(25, 97%, 53%, 0.8);
    background-color: hsl(215, 18%, 21%);
    padding: 5px 10px;
    border-radius: 40px;
    font-size: 15px;
    margin: 0 0 20px 0;
}

.message p{
    margin: 25px 0;
}
.attribution{
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #fff;
}
.attribution a{
    color: hsl(25, 97%, 53%);
}
