/* Main */

* {
    margin: 0 auto;
    box-sizing: border-box;
}

@font-face {
    font-family: "denton";
    src: url(../../assets/fonts/denton.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "mobicb";
    src: url(../../assets/fonts/Mobicb_.otf) format("opentype");
    font-weight: normal;
    font-style: normal;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    text-decoration: underline;
    font-style: italic;
    text-align: center;
    max-height: 100px;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: black;
}

.voltar-pagina {
    width: 200px;
    margin: 20px;
}


a {
    color: aliceblue;
    text-decoration: none;
}

header h3 {
    background-color: gray;
    padding: 12px;
    border-radius: 5px;
    transition: 0.2s;
}

header h3:hover {
    background-color: rgb(160, 160, 160);
    border-radius: 30px;
}

body {
    line-height: 1.5;
    color: aliceblue;
    background: linear-gradient(45deg, rgb(26, 26, 26, 0.96), rgb(26, 26, 26, 0.96)), url(../../assets/nodebg.png);
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
}

.titulo-review {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: denton, Geneva, Tahoma, sans-serif;
    font-size: 30px;
    letter-spacing: 5px;
    margin: 20px;
}

.titulo-review p {
    font-style: italic;
}

.corpo-review {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto
}

.card-review {
    background-color: rgb(75, 73, 73);
    -border: 2px solid red;
    width: 750px;
    height: 80px;
    border-radius: 5px;
    padding-left: 50px;
    padding-top: 10px;
    text-shadow: 0px 0px 5px black;
    margin: 30px auto;
    transition: 0.2s;
}

.card-review a {
    display: block;
    width: 100%;
    height: 100%;
}

.card-review:hover {
    scale: 105%;
    box-shadow: 0 0 30px 20px rgba(21, 70, 110, 0.5)
}

/* Cards id's */

#supermomboquest {
    background-image: url(../../assets/img-analises/super-mombo-quest/super-mombo-quest-card.jpg);
}

#madeinabyss {
    background-image: url(../../assets/img-analises/made-in-abyss/made-in-abyss-card.jpg);
}

#spidermanr {
    background-image: url(../../assets/img-analises/spider-man-r/spiderman-card.jpg);
}


