*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header
{
    width: 100%;
    background-color: black;
    color: white;
    padding: 10px 0;
}

header h1{margin-top: 10px;}
header h1 span{color: red;}

header nav
{
    display: flex;
    justify-content: center;
    align-items: center;
}

header nav ul
{
    list-style-type: none;
    display: flex;
    gap: 30px;
}

header nav ul li a 
{
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

header nav ul li a:hover{color: red;}

header input
{
    padding: 6px;
    font-size: 16px;
    width: 250px;
    margin-left: 30px;
    border: none;
    border-radius: 5px;
}

#movie-list
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

.movie
{
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    width: 200px;
    text-align: center;
    padding: 2px;
}

.movie img{width: 100%; border-radius: 8px; height: 300px; cursor: pointer;}
.movie img:hover{transform: scale(1.03);}
.movie h3{font-size: 18px; margin-top: 10px;}
.movie:hover{color: red;}

footer
{
    width: 100%;
    background-color: black;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer.contato{font-size: 16px;}
footer p{margin: 5px 0; padding: 10px;}
footer ul a{color: white; text-decoration: none;}
footer ul a:hover{color: red;}