@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, cursive;;
}

body {
    font-family: Arial, cursive;
    background-color: #003329;
    min-height: 10vh;
    overflow-x: hidden;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
}

.logo {
    color: #359381;
    font-size: 2em;
    pointer-events: none;
    width: 100px;
    height: 100px;
    margin-right: 400px;
    margin-left: 100px;
}

.navegation a {
    text-decoration: none;
    color: #000000;
    padding: 6px 15px;
    border-radius: 20px;
    margin: 0px 10px;
    font-weight: 600;
    background-color: #fff;
}

.navegation a:hover,
.navegation a.active {
    background-color: #000000;
    color: #fff;
    transition: 0.5s ease-in-out;
}

.parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#text {
    font-family: 'Comic Relief', cursive;
    text-align: center;
    position: absolute;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
    font-size: 3em;
}

.parallax img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

#taca {
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sec {
    top: 100px;
    padding: 100px;
    position: relative;
    background-color: #003329;
}

.sec h2 {
    font-size: 3em;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000;
}

.box {
    background-color: black;
    top: 100px;
}

.bobo {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 1px 1px 5px #000;
    padding: 20px;
    width: 75%;
    text-align: center;
    margin: auto;
    box-shadow: 5px 5px 15px #000;
}

.bobo img {
    margin: 20px;
    box-shadow: 1px 1px 5px #000;
}


#txtanimado {
    top: 815px;
    left: 300px;
    margin: auto;
    text-align: center;
    position: absolute;
    display: flex;
    color: #fff;
    font-size: 28px;
    padding: 5px;
    border-radius: 10px;
}

#txtanimado p {
    top: 100px;
    color: #fff;
    font-size: 28px;
    text-align: center;
    text-shadow: 2px 2px 4px #000;
}

#txtanimado span {
    position: relative;
}
#txtanimado span::before {
    content: "";
    color: #3cff00;
    animation: palavras 20s infinite;
    
}

#txtanimado span::after {
    content: "";
    position: absolute;
    height: 100%;
    border-left: 2px solid #3cff00;
    right: -10px;
    animation: cursor 0.8s infinite, digita 20s steps(15) infinite;
    width: calc(100% + 11px);
    background-color: #003329;
}

@keyframes digita {
    10%, 15%, 30%, 35%, 50%, 55%, 70%, 75%, 90%, 95% {
        width: 0;
    }
    5%, 20%, 25%, 40%, 45%, 60%, 65%, 80%, 85% {
        width: calc(100% + 11px);
    }
}

@keyframes cursor {
    0% {
        border-left: 2px solid #003329;
    }
}

@keyframes palavras {
    0%,20% {
        content: "Arthur Emmerich Lamas";
    }
    21%, 40% {
        content: "Giovanni Galanjauskas Kacevicius Lima Ferreira";
    }
    41%, 60% {
        content: " 1ºIFEM - 2025";
    }
    61%, 80% {
        content: "Etec de Praia Grande - Extensão Balneário Maracanã";
    }
    81%, 100% {
        content: "Agradecimento para o Prof Alessandro";
    }
}

tr:nth-child(even) {
    background-color: #92928c;
}
tr:hover {
    background-color: #1c1b1b;
    transition: 1s ease-in-out;
    color: #fff;
    margin: auto;
}


tr {
    background-color: #fff;
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
}
th, td {
    text-align: center;
    border: 1px solid #dddddd;
}
table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 80%;
    margin: auto;
    border-radius: 20px;
}
