@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300&display=swap');

*{
    margin: 0 ;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}
body{
    background: linear-gradient(#c0fad1,#acfdc4);
}
a{
    text-decoration: none;
    color: rgb(138, 1, 1);
}

header{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color:#acfdc4;
}

.principal{
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.titulo{
    margin-left: 20px;
    
}
.logo{
    display: flex;
    justify-content: center;
}
.titulo h1{
    font-family: 'DM Sans', sans-serif;
    font-size: 90px ;
}

#menu ul{
    margin-left: 100px;
    list-style-type: none;
    padding: 0;
    font-size: 20px;
    background-color: #acfdc4;
}
#menu ul li{
    display: inline-block;
    justify-content: flex-end;
}
#menu ul li a{
    display: inline;
    padding: 34px;
    display: inline-block;
    color: #000000;
    text-decoration: none;
    transition: background .5s;
}
#menu ul li a:hover{
    background-color: #fce728;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    
}

.filme {
    display: flex;
    margin-bottom: 20px;
    margin-top: 30px;
}

.poster {
    padding: 10px;
    max-width: 230;
    max-height: 400;
    margin-right: 10px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sinopse {
    flex: 1;
    max-width: 600px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.video {
    width: 100%;
    height: 400px; /* Defina a altura desejada */
    margin-top: 20px;
}

p {
    text-indent: 50px;
    text-align: justify;
    line-height: 1.5;
}