:root{
    --vermelho: #E50914;
    --preta: #141414;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* elementos base*/

body{
    background: var(--preta);
    font-family: 'Arial', Times, serif;
    color: white;
}

header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo{
    margin-left: 5px;
    color: var(--vermelho);
    font-family: 'Arial Black', Times;
    font-size: 40px;
}

header nav a{
    text-decoration:none;
    color: #AAA;
    margin-right: 10px;
}

header nav a:hover{
    color: #FFF;
}

/* anime principal */

.anime-principal{
    font-size: 16px;
    background: linear-gradient(rgba(0,0,0,.50), rgba(0,0,0,.50)100%), url('../img/KONOSUBA-capa2.jpg');

    height: 580px;
    background-size: cover;

    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: flex-start;

}

.anime-principal .descricao{
    margin-top: 10px;
    margin-bottom: 40px;
    font-size: 18px;
}

.anime-principal .titulo{
    margin-top: 10%;
    font-size: 40px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.botao{
    background-color: rgba(0,0,0,.50);
    border: none;
    color: white;
    padding: 15px 30px;
    margin-right: 20px;
    font-size: 12px;
    
    cursor: pointer;
    transition: .5s ease all;
}

.botao:hover{
    background-color: white;
    color: black;
}

.botao i{
    margin-right: 8px;
}

.container{
    margin-left: 30px;
}

.anime-principal .container{
    width: 70%;
}

.box-anime{
    height: 200px;
    width: 100%;
    display: block;
}

.carrosel-animes{
    display: flex;
    margin-top: 20px;
    margin-right: 10px;
}

.genero{
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom:5px;
    font-size: 25px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.box-anime {
    position: relative;
    display: block;
    flex: 1 1 0px;
    max-width: 100%;
    transition: transform 500ms;
}

.item:focus-within .box-anime,
.item:hover .box-anime {
    transform: translateX(-25%);
}

.item .box-anime:focus,
.item .box-anime:hover {
    transform:scale(1.5);
    z-index: 1;
}


