@keyframes verde {
    0% {
        background-color: #00b200;
    }
    50% {
        background-color: #01f800;
        transform: scale(1.04);
        box-shadow: 0 0 40px 15px #01f800;
    }
    100% {
        background-color: #00b200;
    }
}

@keyframes amarelo {
    0% {
        background-color: #b2b000;
    }
    50% {
        background-color: #f8f400;
        transform: scale(1.04);
        box-shadow: 0 0 40px 15px #f8f400;
    }
    100% {
        background-color: #b2b000;
    }
}

@keyframes vermelho {
    0% {
        background-color: #b20000;
    }
    50% {
        background-color: #fb0000;
        transform: scale(1.04);
        box-shadow: 0 0 40px 15px #fb0000;
    }
    100% {
        background-color: #b20000;
    }
}

@keyframes azul {
    0% {
        background-color: #0000b2;
    }
    50% {
        background-color: #0000e5;
        transform: scale(1.04);
        box-shadow: 0 0 40px 15px #0000e5;
    }
    100% {
        background-color: #0000b2;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    border: none;
    outline: 0;
}

body {
    height: 100vh;
}

header {
    height: 90px;
    padding: 20px;
}

h1 {
    color: #dddbd7;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    margin: 0;
    font-size: 50px;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 1228px;
    height: 840px;
    margin: auto;
    position: relative;
}

.botao {
    width: 36%;
    height: 49%;
}

#botao1 {
    background-color: #00b200;
    margin-right: 7px;
    border-top-left-radius: 100%;
    animation-duration: 0.9s;
}

#botao2 {
    background-color: #b2b000;
    border-top-right-radius: 100%;
    animation-duration: 0.9s;
}

#botao3 {
    background-color: #b20000;
    margin-right: 7px;
    border-bottom-left-radius: 100%;
    animation-duration: 0.9s;
}

#botao4 {
    background-color: #0000b2;
    border-bottom-right-radius: 100%;
    animation-duration: 0.9s;
}

.conteudoCentral {
    border-radius: 70%;
    width: 444px;
    height: 494px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    text-align: center;
    z-index: 99;
    top: 20%;
    left: 31%;
    background-color: #7efed3;
    flex-direction: column;
}

.primeiroTitulo {
    color: rgb(32, 32, 32);
    font-size: 30px;
    font-weight: 400 Medium;
    width: 280px;
}

.textoPosErro {
    font-size: 15px;
    color: rgb(36, 36, 36);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    height: 200px;
    justify-content: space-around;
}

.botaoCentral {
    font-family: sans-serif;
    font-weight: bold;
    display: flex;
    color: white;
    background-color: rgb(0, 0, 0);
    margin-bottom: 20px;
    width: 150px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.botaoCentral:hover {
    cursor: pointer;
    transform: scale(1.1);
}