/* Estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Imagem de fundo */
body {
    background-image: url('img/building2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Película sobre a imagem de fundo */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Container centralizado */
.container {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* Título Bem-vindos com fonte Lobster */
.welcome {
    font-size: 3em;
    font-family: 'Lobster', cursive;
    margin-bottom: 20px;
}

/* Texto de acompanhamento */
.follow-text {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #fff;
}

/* Links de redes sociais */
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
    animation-delay: 1s;
}

.link {
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

/* Ajuste de tamanho dos ícones */
.link i {
    font-size: 2em; /* Aumenta o tamanho do ícone */
}

/* Efeitos de hover nos links */
.link:hover {
    background-color: #fff;
    color: #333;
}

/* Animação de entrada */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Especificação dos estilos dos links */
.instagram { border-color: #C13584; }
.facebook { border-color: #3b5998; }
