@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
    list-style: none;
    text-decoration: none;
}
body{
    display: flex;
    flex-direction: column;
    background-color: black;
}
header{
    width: 100%;
    max-height: 72px;

    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0f171e;
    background-image:  linear-gradient(180deg,#1b2530 0,rgba(27,37,48,.85));
    background-repeat: repeat-x;

}

header  .logo {
    max-width: 120px;
    margin-left: 10px;

    filter: invert(1);
    border: none;
}

.navegation{
    display: flex;
    align-items: center;
    gap: 20px;
}

.navegation li a{
    color: rgba(242,244,246,.9);
    font-size: 17px;
    transition: all .5s;
}

.navegation li a:hover{
    border-bottom: 2px solid #fff;
}

.navegation li:first-child a:hover{
    border-bottom: none;
}

header .canto{
    margin-right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;

}
.canto .search{
    width: 17px;
    cursor: pointer;
    filter: invert(1);
}

.perfil{
    width: 40px;
    cursor: pointer;
    border: none;
}

main{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-grow: 1;

    background-image: url(./assents/the-legend-of-vox-machina.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 13.3em;
    color: #fff;
}
main h1{
    font-size: 38px;
}
main h2{
    font-size: 35px;
}

footer{
    background-color: #0f171e;
    width: 100vw;
    color: #fff;
    text-align: center;
    font-size: 15px;
    padding: 2px 0 12px 0;

}