@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #cad9d0;
    color: #0d0d0d;
    font-family: "PT+Serif", sans-serif;
    font-weight: 400;
}

header {
    box-sizing: content-box;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(to right, #6e8577, #324a3c);
    padding: 20px 0px;
    flex-direction: flex;
    background-image: url("./inverno/capa.jpg");
    background: center cover no-repeat;
    height: 450px;
    width: 100%;
}

header img {
    width: 1100px;
    height: auto;
    margin-bottom: 5px;
}

nav {
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav a {
    color: #101211;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    padding: 5px 12px;
    margin: 0px 35px;
    background-color: rgba(219, 216, 216, 0.671);
    border-radius: 20px;
}

nav a:hover {
    color: #141414;
    background-color: #87d6b5;
    border-radius: 55px;

}

main {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.topicos {
    display: flex;
    align-items: center;
    justify-content: center;
}

article {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

p {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: justify;
}

#frase-de-efeito {
    letter-spacing: 2px;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0px 0px 8px #2c3633;
    margin: 30px 0px 10px 0px;
    text-align: center;
}

h1 {
    color: #253833;
    font-size: 2rem;
    margin: 20px;
}

h2 {
    color: #15477d;
}

.main-container {
    display: flex;
    max-width: 1000px;
    gap: 20px;
    flex-wrap: wrap;
    margin: 50px auto;
}

.main-block {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 200px;
    background-color: #a9c4b9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 6px #324a3c;
    justify-content: space-between;
    align-items: center;
}

.main-block p {
    font-size: 16px;
    margin: 10px;
    text-align: center;
}

.main-block a {
    color: #141414;
    background-color: #87d6b5;
    text-decoration: none;
    padding: 5px 12px;
    margin: 3px 0px;
    border-radius: 15px;
    font-weight: 500;
}

.main-block a:hover {
    color: #0d0d0d;
    background-color: #4395b5;
}

.trailer {
    max-width: 1000px;
    background-color: #a9c4b9;
    border-radius: 10px;
    box-shadow: 0px 0px 6px #99c7ab;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

.trailer {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0px 0px 6px;
    margin-top: 10px;
}

.trailer p {
    text-align: center;
}

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


#topo a {
    text-decoration: none;
    color: #0a0a0a;

}

#topo a:hover {
    color: #15477d;
}

footer {
    background-color: #324a3c;
    color: #6e8577;
    text-align: center;
    padding: 20px 0px;
}

.redes-sociais {
    margin-top: 10px;
}

footer img {
    width: 75px;
    height: 75px;
    transition: transform 0.2s ease;
    margin: 0px 6px;

}

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

@media (max-width: 650px) {
    figure img {
        width: 100%;
    }
}