* {
    margin: 0px;
    padding: 0px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

body {
    background-color: #9cb1cd;
}

.card {
    width: 320px;
    background-color: #e4e4e4;
    margin: 3rem auto;
    border-radius: 10px;
    box-shadow: 0px 5px 20px -5px #000000d4;
}

.imagem, .titulo, .descricao, .descricao2 {
    padding: 15px;
}

.titulo h2:hover {
    text-decoration: underline;
    cursor: pointer;
}

.imagem img {
    width: 100%;
    border-radius: 10px;
}

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

.preco {
    font-weight: 600;
    font-size: 1.3rem;
}

.botao-comprar button {
    background-color: #007400;
    color: #e4e4e4;
    font-size: 1.4rem;
    border-radius: 5px;
    padding: 5px 20px;
    cursor: pointer;
}

.botao-comprar button:hover {
    background-color: #009200;
}