/* estiloht.css */

:root {
    --cor0: #F29188;
    --cor1: #F25430;
    --cor2: #F24535;
    --cor3: #3C35F2;
    --cor4: #5852F2;
    --cor5: #7e7bed;

    --fonte-padrao: Arial, Verdana, Helvetica, sans-serif;
    --fonte-destaque: 'Bebas Neue', sans-serif;
}

* {
    padding: 0px;
    margin: 0px;
}

body {
    background-color: var(--cor0);
    font-family: var(--fonte-padrao);
}

header {
    background-image: linear-gradient(to bottom, var(--cor0), var(--cor1));
    padding-top: 30px;
    min-height: 80px;
    text-align: center;
}

header h1 {
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.267);
    font-family: var(--fonte-destaque);
    font-weight: normal;
    font-size: 3em;
    color: black;
}

main {
    background-color: white;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.418);
    max-width: 900px;
    min-width: 700px;
    transform: translate(-50%, -50%);
    position: absolute;
    padding: 15px;
    height: 506px;
    margin: auto;
    left: 50%;
    top: 56%;
}

main h2 {
    background-image: linear-gradient(to right, var(--cor0), var(--cor1));
    margin-bottom: 30px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.193);
    text-align: left;
    padding: 5px;
}

ul {
    columns: 2;
}

section {
    background-image: linear-gradient(to right, var(--cor0), var(--cor1));
    border-radius: 10px;
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.418);
    transform: translate(0%, -10%);
    padding: 10px;
    height: 80px;
    width: 320px;
}

section p {
    margin-top: 25px;
    font-size: 14pt;
}

section a {
    text-decoration: none;
    font-weight: bold;
    color: black;
}

section a:hover {
    text-decoration: underline;
    color: var(--cor3);
}

footer {
    background-color: black;
    text-align: center;
    font-size: 12pt;
    position: relative;
    padding: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    bottom: -557px;
    color: white;
}

footer a {
    color: white;
    padding: 5px;
    font-weight: bold;
    border-radius: 3px;
    text-decoration: none;
    transition-duration: 0.5s;
}

footer a:hover {
    text-decoration: underline;
    color: var(--cor3);
}