
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-family: 'Roboto';
}
body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.titulo{
    width: 100%;
}
.descricao{
    width: 100%;
}
.titulo h1{
    color: rgb(88, 0, 88);
    font-weight: bold;
    font-size: 2.5rem;
}
.elementos-direita{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.rate{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(245, 245, 245);
    border-radius: 5px;
    padding: 0.5rem;
    width: 500px;
}
.rate h4{
    color: rgb(88, 0, 88);
    font-weight: bold;
    font-size: 1rem;
}
.baixo{
    height: 100%;
}
.cardi{
    border-radius: 1rem;
    background-color: rgb(88, 0, 88);
    width: 300px ;
    height: 220px;
    padding: 20px;
}
.cardi .cima-card{
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.cima-card img{
    border-radius: 50%;
    width: 2.5rem;
}
.cardi .card-title, .card-text{
    color: white;
    font-weight: bold;
}
.cardi .card-subtitle{
    color: rgb(205, 69, 171);
}
