* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #FFFFFF;
    color: #4B4B4B;
}

header {
    background-color: #0D3B66;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
}

header img {
    width: 200px;
    border-radius: 15px;
}

nav {
    text-align: center;
    margin-top: 10px;
}

nav a {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    margin: 0 10px;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    color: black;
    background-color: #F4D35E;
    border-radius: 15px;
    padding: 5px;
}

#frase-de-efeito {
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0px 0px 8px #4B4B4B;
    color: #EE6C4D;
    margin: 20px 0;
    text-align: center;
}

.cast-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.cast-member p{
    text-align: justify;
}

main {
    background-color: #E6ECF0;
    border-radius: 8px;
    padding: 20px;
}

main p{
    margin: 30px 40px;
    font-size: 20px;
    text-align: center;
    color: rgb(29, 28, 28);
}

h1{
    color: rgb(29, 28, 28);
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
}

h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

li {
    margin: 0 50px 20px 50px;
    font-size: 20px;
}

.cast-member1 img{
    width: 130px;
    max-width: 100%;
    border-radius: 8px;
}

.cast-member2 img{
    width: 150px;
    max-width: 100%;
    border-radius: 8px;
}

.cast-member3 img{
    width: 100px;
    max-width: 100%;
    border-radius: 8px;
}

.cast-member4 img{
    width: 150px;
    max-width: 100%;
    border-radius: 8px;
}

figure {
    text-align: center;
    margin-top: 20px;
}

figcaption {
    margin-bottom: 15px;
}

#topo {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 20px;
}

#topo a {
    text-decoration: none;
    color: black;
}

#topo a:hover {
    color: #EE6C4D;
}

footer {
    background-color: #0D3B66;
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 8px;
}

footer img {
    width: 30px;
    transition: transform 0.3s ease;
    margin: 0 7px;
    margin-top: 10px;
}

small{
    font-size: 18px;
}

footer img:hover {
    transform: scale(1.1);
}