body {
    background-image: url('bg.png');
    background-size: cover;
    background-position: 0 center;
    animation: moveBackground 50s linear alternate infinite;
    backdrop-filter: blur(2px);
    background-color: #4e73df;
}

@keyframes moveBackground {
    from {
        background-position: 0% center;
    }
    to {
        background-position: 100% center;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

section.links {
    min-height: 100vh;
    width: 100%;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin: auto;
    max-width: 768px;
    z-index: 5;
    position: relative;
}

section.links .image {
    height: 90px;
    width: 90px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}

section.links h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

section.links h2 {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

section.links h3 {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

section.links .buttons {
    display: flex;
    gap: 15px;
    flex-flow: column;
}

section.links .buttons .button {
    background-color: white;
    color: var(--primary);
    padding: 20px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.5s all;
    text-decoration: none;
}

section.links .buttons .button:hover {
    background-color: var(--primary);
    color: white;
}

section.links .floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #25d366;
    color: white;
    padding: 15px 30px;
    text-wrap: nowrap;
    font-size: 1.15rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.5s all;
}

section.links .floating-whatsapp:hover {
    background: #128c7e;
}
