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

html {
    font-family: Helvetica;
    background: white
}

.titulo-principal {
    text-align: center;
    font-size: 30px;
    color: #a0c5f0;
    text-shadow: 3px 3px #ffffff;
}

.cabecalho {
    background-color: rgba(241, 236, 181, 0.8);
    height: 140px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo img {
    height: 100px;
}

.redessociais ul {
    list-style: none;
    font-size: 36px;
    color: #96d1e6;
    display: flex;
    gap: 10px;
}

/* Corpo da pagina usada -------------------------- */

.corpo-pagina {
    -border: 5px solid black;
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    background-color: #f0dbdb;
    padding: 100px 0;
    
}

.waifu-dados-cara,
.waifu-especiais {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    border-right: 1px solid black;

    border-top: 2px solid #96d1e6;
    border-right: 2px solid #96d1e6;
    box-shadow: -15px 15px #96d1e6;
}

.waifu-caracteres h1,
.waifu-caracteres h3 {
    -border: 5px solid black;
    text-align: center;
    line-height: 1.8;
    padding: 10px;
    background-color: #b5ebd9;
    border-radius: 10px;
}

.waifu-caracteres p {
    -border: 5px solid blue;
    text-align: center;
    width: 600px;
    line-height: 1.8;
}

.tabela-completa {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 20px;
    min-width: 600px;
    border-radius: 10px 10px;
    overflow: hidden;

    border-top: 2px solid #96d1e6;
    border-right: 2px solid #96d1e6;
    box-shadow: -15px 15px #96d1e6;
}

.tabela-completa tbody td {
    border: 5px solid #dddddd;
}

.tabela-completa tbody tr {
    background-color: white;
    text-align: left;
}

.tabela-completa tbody tr:nth-of-type(even) {
    background-color: #daf8ee;
}

.tabela-completa th,
.tabela-completa td {
    padding: 20px 30 px;
}

.waifu-especiais ul,
.waifu-atributos ul {
    -border: 5px solid blue;
    width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 200px;
    line-height: 1.8;
}

.waifu-atributos ul {
    list-style: none;
}

.waifu-especiais ul {
    font-style: italic;
    list-style: disc;
}

.texto-alin {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.imagem-waifu {
    -border: 5px dotted black;
    background-color: white;
    display: flex;
    justify-content: center;
    width: 600px;
    border-radius: 30px;
    border-top: 2px solid #96d1e6;
    border-left: 2px solid #96d1e6;
    box-shadow: 15px 15px #96d1e6;
}

.adote {
    display: flex;
    margin: 100px auto;
    justify-content: center;
    align-items: center;
}

.adote img {
    height: 200px;
    border-radius: 20px;
}

.adote img:hover {
    box-shadow: 15px 15px #96d1e6;
    transition: 0.2s ease-in-out;
}



/* Corpo da pagina usada fim -------------------------- */

.fundo {
    background-color: rgba(241, 236, 181, 0.8);
    display: flex;
    gap: 10px;
    margin: 0 auto;
    width: 100%;
}

.rodape {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contato ul {
    text-align: center;
    list-style: none;
}