/* Importando a fonte parecida com a da série */
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

html, body{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.invitation-content {
    margin: 0;
    background-color: black;
    color: rgb(255, 255, 255);
    font-family: 'Poiret One', sans-serif !important;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Estilizando o título */
.title{
    font-size: 50px;
    color: #e6d16a; /* Amarelo suave */
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.5s ease-out forwards;
}

/* Animação do título */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação para os textos menores */
.fade-in {
    opacity: 0;
    animation: fadeInText 2s ease-in-out forwards;
}

/* Pequeno delay para cada linha */
.fade-in:nth-child(2) { animation-delay: 1.2s; }
.fade-in:nth-child(3) { 
    animation-delay: 1.7s;
}
.fade-in:nth-child(4) { animation-delay: 1.8s; }
.fade-in:nth-child(5) { animation-delay: 1.8s; }
/* Pequeno delay para cada linha dos links*/
.delay2 { animation-delay: 0.8s;}
.delay3 { animation-delay: 1.5s; }

/* Layout da seção de informações */
.info {
    display: flex;
    justify-content: space-between;
    width: 300px;
    margin: 20px 0;
}
.delay7 { 
    text-decoration: none;
    animation-delay: 3.2s; 
    color: #5f5462;}
.creditos{
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
    animation-delay: 2.4s;
    margin: 3rem;
    color: #5f5462;
}
.info a{
    border-left: 1px solid rgb(4, 4, 4);
    padding: 0. 1rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.8s;
}
.info a:hover{
    border-left: 1px solid rgb(162, 83, 236);
    border-radius: 10px;
    padding: 0.1rem 1rem;
    color: rgb(169, 242, 249);
    text-decoration: none;
}

/* Estilizando o "xoxo" */
.xoxo {
    font-size: 20px;
    color: #e64a4a; /* Vermelho suave */
    font-weight: bold;
}

/* Animação para os textos */
@keyframes fadeInText {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
