@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #08053A;
}

.container {
    background-color: #fafafa;
    border: 4px solid #fafafa;
    padding: 25px;
    border-radius: 20px 0;
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.366);
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
}


header img {
    height: 50px;
}

.estrelas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.fa-star {
    font-size: 2em;
    color: lightgray;
    cursor: pointer;
    transition: color .2s;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.427);
}

.active {
    color: #F2C14E;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer img {
    border-radius: 50%;
    height: 20px;
    transform: translateY(25%);
}

footer a {
    color: black;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
    transition: .2s;
}

footer a p {
    display: inline;
}

#btn {
    border: none;
    border: 3px solid #ffcb52;
    background-color: #ffcb52;
    color: black;
    font-weight: 500;
    width: 90%;
    padding: 10px;
    border-radius: 15px;
    font-size: 1.3em;
    cursor: pointer;
    transition: .2s;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.482);
}

#btn:hover {
    background-color: #dfb249;
    border: 3px solid #dfb249;
}