@import url('https://fonts.googleapis.com/css2?family=Libertinus+Math&display=swap');

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

body{
    background-color: #b3e7ff;
    color: #24211E;
    font-family: "Cabin", sans-serif;
    font-weight: 400;
}

header{
    background: linear-gradient(to right, #c1a6c5, #E19094);
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header img{
    width: 300px;
    height: auto;
}

nav a{
    color:#a780a5;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 12px;
    margin: 0px 20px;
}

nav a:hover {
    color:#8b7258;
    background-color: #daba98;
    border-radius: 15px;   
}

#frase-de-efeito{
    letter-spacing: 1px;
    color: rgb(21, 78, 100);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 8px #2c80a1;
    text-align: center;
}

h1{
    color: rgb(11, 48, 63);
    font-size: 2.4rem;
    text-shadow: 1px 1px 5px #2c80a1;
    text-align: center;
    margin: 20px;
}

.topicos{
    text-align: justify;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.topicos a{
    text-align: center;
    text-decoration: none;
    color:#8e5356;
    background-color: #eabfc2;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 400px;
}

.topicos a:hover{
    background-color: rgb(132, 236, 234);
    color: #2e5b5b;
    border-radius: 10px;
}

h2{
    color: #1e8080;
    font-family: Cambria;
    font: 2rem;
}

main{
    text-align: center;
    margin: 20px;
}

main img{
    width: 550px;
    height: auto;
}

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

th {
    background-color:#d3b895;
    color: #845f35;
    padding: 10px;
}

td {
    background-color: #be9b6e;
    padding: 10px;
}

td a{
    text-decoration: none;
    color: #614728;
    font-weight: 700;
}

td a:hover {
    color: #eec498;
    background-color: #724f1a;
    border-radius: 15px; 
}

ul{
    list-style-position: inside;
}

p{
    font-size: 15px;
    color: #103b37;
    font-family: Calisto MT;
}

#topo{
    margin-top: 20px;
}

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

#topo a:hover{
    color: #daba98;
    background-color: rgb(109, 95, 77);
    border-radius: 10px;
}

footer{
    background-color: #e4a7aa;
    color:rgb(11, 48, 63);
    text-align: center;
    padding: 15px;
}

footer img{
    width: 24px;
    height: 24px;
    transition: transform 0.2 ease;
    margin: 0px 6px;
}

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

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

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