

main > img
{
    width: 500px;
    height: 220px;
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    border: solid 3px #212529;
}

#moto
{
    font-size: 2em;
    color:#dee2e6;
    text-align: center;
}


#container
{
    user-select: none;
    width: 60%;
    height: 150px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    margin-bottom: 200px;
    gap:20px;
    flex-wrap: wrap;
}

.card
{
    padding:10px;
    width: 200px;
    height: 50px;
    background-color: #868e96;
    border-radius: 20px;
    border: solid 3px #212529;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    cursor: pointer;
    font-weight: 600;
    color:#dee2e6;
    text-align: center;
}

.stars
{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h3
{
    font-size: 1.4em;
    color:#dee2e6;
}

.star
{
    font-size: 2em;
    cursor: pointer;
}



.star:hover , .star:hover ~ .star 
{
    color: #dee2e6;
}

@media screen and (max-width:1000px)
{
    main > img 
    {
        width: 300px;
        height: 120px;
    }

    #moto
    {
        font-size: 1.3em;
    }

    .card
    {
        width: 180px;
        height:40px;
    }
}

@media screen and (max-width:600px)
{
    main > img 
    {
        width: 200px;
        height: 80px;
    }

    #moto
    {
        font-size: 1em;
    }
    
    .card
    {
        width: 140px;
        height:25px;
        font-size: 1.1em;
    }
    .star
    {
        font-size: 1.5em;
    }
}

@media screen and (max-width:360px)
{
    main > img 
    {
        width: 160px;
        height: 60px;
    }
}