* {
    padding: 0;
    margin: 0;
}

body {
    background:
        radial-gradient(ellipse at 20% 50%, #dfe17f 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, #dfe17f 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, #86ec97 0%, transparent 50%),
        linear-gradient(135deg, #8294e5 0%, #99ed85 50%, #86ec97 100%);
    /* background:
        radial-gradient(ellipse at 20% 50%, #86ec97 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, #8294e5 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, #e1ec86 0%, transparent 50%),
        linear-gradient(135deg, #8294e5 0%, #99ed85 50%, #dfe17f 100%); */
    /* background:
        radial-gradient(ellipse at 20% 50%, #cfcfffec 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, #cbbef2 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, #f1b5f4 0%, transparent 50%),
        linear-gradient(135deg, #cde4ed 0%, #e7cff3 50%, #add2ef 100%); */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

main {
    width: 100%;
}

section {
    width: 100%;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px;
    width: 500px;
    text-align: center;
    background-color: #ffffff5d;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 10px #ffffff;
}

.feedback h1 {
    margin-inline: 40px;
    margin-bottom: 20px;
}

.olho {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 50px;
    margin-bottom: 20px;
}

.olho div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 25px;
    border-radius: 50%;
    border: 2px solid black;
    margin-inline: 2px;
    position: relative;
}

.pupila {
    height: 3px;
    width: 3px;
    border-radius: 50%;
    background-color: #000000;
    border: 2px solid black;
    margin: 0;
    transition: transform 0.05s linear;
    position: relative;
}

.btnFeedback button {
    border-radius: 5px;
    width: 100px;
    height: 40px;
    margin-top: 10px;
    margin-inline: 10px;
    cursor: pointer;
    transition: 0.5s;
    font-weight: bold;
}

.btnFeedback button:nth-child(1) {
    background-color: #92ff4e;
    border: 1px solid #92ff4e;
    box-shadow: 0px 0px 10px #92ff4e;
    animation: pulsar 0.5s ease-in-out;
    animation-iteration-count: 1;
    animation-delay: 5s;
}

.btnFeedback button:nth-child(1):hover {
    background-color: #92ff4e;
    transform: scale(1.05);
}

.btnFeedback button:nth-child(2) {
    background-color: #ff4e4e;
    border: 1px solid #ff4e4e;
    box-shadow: 0px 0px 10px #ff4e4e;
}

.btnFeedback button:nth-child(2):hover {
    background-color: #ff4e4e;
    transform: scale(1.05);
}

@keyframes pulsar {
    0% {
        transform: rotateZ(0deg);
    }

    25% {
        transform: rotateZ(15deg);
    }

    50% {
        transform: rotateZ(0deg);
    }

    75% {
        transform: rotateZ(-15deg);
    }

    100% {
        transform: rotateZ(-5deg);
    }
}

#hack {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px;
    width: 500px;
    text-align: center;
    background-color: #ffffff5d;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 10px #ffffff;
}

#hack h1 {
    margin-inline: 40px;
    margin-bottom: 40px;
}

#hack p {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0a0079;
}

#hack form {
    display: flex;
    flex-direction: column;
}

#hack form input[type='text'] {
    padding: 8px;
    outline: 0;
    background-color: #0a00790d;
    border: 1px solid #0a0079;
    border-radius: 5px;
}

#hack form input[type='submit'] {
    width: 100%;
    height: 30px;
    margin: 0 auto;
    margin-top: 20px;
    cursor: pointer;
    background-color: #ffffff5d;
    border: 1px solid #ffffff;
    border-radius: 5px;
    font-weight: bold;
    color: #0a0079;
    transition: 0.5s;
}

#hack form input[type='submit']:hover {
    background-color: #ffffff;
    box-shadow: 0px 0px 10px #ffffff;
}

#banido {
    display: none;
}

/* Manutenção */

/* Efeito de partículas */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.olho {
    margin-top: 10px;
}

.manutencao svg {
    height: 30px;
    width: 30px;
    animation: rodar 5s infinite alternate linear;
}

@keyframes rodar {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

@media (max-width: 600px) {

    .feedback {
        width: 90%;
        background-color: #ffffff00;
        border: 1px solid #ffffff00;
        box-shadow: 0px 0px 10px #ffffff00;
    }

    .btnFeedback button:nth-child(1) {
        background-color: #4ac100;
        border: 1px solid #4ac100;
        box-shadow: 0px 0px 10px #4ac100;
        color: #fff;
    }

    .btnFeedback button:nth-child(1):hover {
        background-color: #4ac100;
    }

    .btnFeedback button:nth-child(2) {
        background-color: #c10000;
        border: 1px solid #c10000;
        box-shadow: 0px 0px 10px #c10000;
        color: #fff;
    }

    .btnFeedback button:nth-child(2):hover {
        background-color: #c10000;
    }

    #hack {
        width: 90%;
        background-color: #ffffff00;
        border: 1px solid #ffffff00;
        box-shadow: 0px 0px 10px #ffffff00;
    }

    #hack h1 {
        font-size: 22px;
        margin-inline: 20px;
    }

    #hack p {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #0a0079;
    }

    #hack form input[type='text'] {
        padding: 10px;
        width: 300px;
        font-size: 15px;
        color: #000000;
    }

    #hack form input[type='submit'] {
        height: 40px;
        padding: 10px;
        width: 120px;
        font-size: 15px;
        background-color: #ffffff;
    }

    #banido h1 {
        font-size: 20px;
    }

    /* manutenção  */

    .feedback h1 {
        font-size: 25px;
        margin-inline: 20px;
        margin-bottom: 20px;
    }
}