* {
    margin: 0;
    padding: 0;
    /* nao funciona top: 0; */
}

body {
    font-family: sans-serif;
    background-color: #121212;
}

header {
    height: 60px;
    background-color: #212121;
    color: white;

}

header button {
    background-color:white;
    border:none;
    cursor:pointer;
}

h1 {
    text-align: center;
    color: white;
}

.cardTotal {
    display: flex;
    background-color: white;
    color: black;
}

section {
    width: min-content;
    height: min-content;
    background-color: #212121;
    padding: 7px;
    margin-top: 100px;
    margin: auto;
    border-radius: 10px;

    box-sizing: border-box;

}

.line {
    display: flex;

}

.container {
    padding: 10px;
    width: 170px;
    height: 340px;
    background-color: #212121;
    border-radius: 20px;
    zoom: 90%;



    position: relative;
    /* quem fica ensima */
    z-index: 1;

}

.container:hover {
    /* nome do efeito  "visual pop-out" */

    /* quanto espande e sem interir */
    transform: scale(1.3);
    /* quem fica ensima */
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


.imgContainer {
    width: 170px;
    height: 170px;
    display: flex;
    margin: auto;
    border-radius: 10px;
    background-color: white;

    overflow: hidden;

}

.imgContainer img {
    width: 170px;
    height: 170px;

}



.info {
    color: white;
    padding: 10px;

}

.info a {
    color: white;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline
}


.rs {
    padding: 0;
    margin-top: 0;
    font-size: 15px;
    color: rgb(16, 128, 219);
    font-weight: 600;
}

.buttonC button {
    display: flex;
    margin: auto;
    width: 100px;
    height: 25px;
    border: none;
    border-radius: 5px;
    background-color: rgb(202, 137, 15);
    color: white;
    font-weight: bold;
    align-items: center;
    text-align: center;
    cursor: pointer;

    justify-content: center;
}

.buttonC button:hover {
    zoom: 105%;
    width: 140px;
    background-color: rgba(202, 137, 15, 0.836);
    box-shadow: 0 0 20px (202, 137, 15, 0.836);

    cursor: cell;
}

footer {
    height: 100px;
    background-color: #212121;
}