*{
    margin: 0px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

header{

    height: 120px;
    background-color: rgb(32, 32, 32);
    padding: 10px;
    display: grid;
    grid-template-columns: 20% 80%;
    column-gap: 20px;
    
    align-items: center;
}

.estreno{
    width: 100%;
    height: 100px;
    display: grid;
    grid-template-columns: 20% 80%;
    column-gap: 10px;
    justify-items: center;
    align-items: center;
}

.logo{
    height: 100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
}

h1{
    color: aliceblue;
    font-size: large;
}

marquee{
    width: 700px;
}

main{
    width: 100%;
    background-color: rgb(32, 32, 32);
    display: grid;
    grid-template-columns: 20% 80%;
    column-gap: 10px;
    justify-items: center;
}

.container{
    display: grid;
    grid-template-columns: 160px 160px 160px 160px 160px 160px;
    grid-template-rows: 250px 250px 250px;
    column-gap: 8px;
    row-gap: 8px;
    justify-items: center;
    align-items: center; 
    background-color: rgb(32, 32, 32);
}

aside{
    display: inline;
    color: aliceblue;
    background-color: rgb(32, 32, 32);
    width: 200px;
    justify-items: center;
}

a{
    text-decoration: none;
    color: aliceblue;
    padding-left: 10px;
}

li{
    padding: 10px;
}

ul{
   list-style: none; 
   gap: 10px;
   margin: 0px;
   padding: 0px;
}

footer{
    width: 100%;
    padding-top: 100px;
    background-color: rgb(32, 32, 32);
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    justify-items: center;
    
}

p{
    color: aliceblue;
}
