/* Corpo da página */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    background-color: #8DA604; /* Define o fundo preto */
    color: white; /* Mantém o texto visível em fundo escuro */
}

/* Fundo animado */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 180deg at 50% 70%,
        hsla(0, 0%, 98%, 1) 0deg,
        #eec32d 72deg,
        #ec4b4b 144deg,
        #709ab9 216deg,
        #4dffbf 288deg,
        hsla(0, 0%, 98%, 1) 1turn
    );
    mask: radial-gradient(circle at 50% 50%, white 2px, transparent 2.5px) 50% 50% / 20px 20px,
        url("https://assets.codepen.io/605876/noise-mask.png") 256px 50% / 256px 256px;
    mask-composite: intersect;
    animation: flicker 20s infinite linear;
    z-index: 1;
}

/* Animação */
@keyframes flicker {
    to {
        mask-position: 50% 50%, 0 50%;
    }
}

/* Caixa de conteúdo */
.content-box {
    background-color: #BF0131;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    z-index: 10; /* Garante que o conteúdo fique acima do fundo */
    position: relative;
}

.container {
    text-align: center;
}

.profile-img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

h1 {
    margin: 20px 0;
    font-size: 2em;
}

.link-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 1em;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #8DA604;
    color: rgb(255, 255, 255);
}

.logo {
    margin-top: 20px;
    width: 100px;
}
