@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;
}


#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;
}

.topicos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    color:#0a0a0a;
    text-decoration: #3963cc;
    padding: 5px 12px;
    border-radius: 15px;
}

h2 {
    color: #15477d;
    margin-bottom: 20px;
}


figure img {
    width: 750px;
    height: auto;
    border-radius: 5px;
}

figcaption {
    font-size:  0.9rem;
}

.table-responsive {
    width: 100%;
       overflow-x: auto;
}

table {
    border-collapse: collapse;
    text-align: center;

}

th {
    background-color: #6e8577;
    color: #0a0a0a;

}

td {
    background-color: #6e8577;
}

td a {
    text-decoration: none;
    color: #3963cc;
}

 
#topo {
    margin-top: 20px;
}


#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: 1250px) {
    figure img {
        width: 100%;
    }
}