body {
    margin: 0;
    padding: 0;
    font-family: LoveFromSerif, serif;
    background-color: #FAFAFA;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}

.logo img {
    width: 150px; /* adjust according to your logo */
    height: auto;
    opacity: 0; /* initially hidden */
    animation: fadeInLogo 1.5s ease forwards;
}

.content {
    margin-top: 50px;
    opacity: 0; /* initially hidden */
    animation: fadeInContent 1s ease forwards;
}

h1 {
    margin-bottom: 30px;
}

.sentence-placeholder {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.social-icons {
    margin-top: 20px; /* Adjust spacing */
    display: flex;
    justify-content: center; /* Center horizontally */
    opacity: 0; /* Initially hidden */
    animation: fadeInIcons 1s ease forwards;
}
.social-icons a {
    display: inline-block;
    margin-right: 10px; /* Adjust spacing between icons */
    text-decoration: none; /* Remove underline from links */
}

.social-icons a i {
    display: block; /* Make the icons block elements */
    color: #000; /* Set default color */
    transition: color 0.3s; /* Add transition effect for color change */
}

.social-icons a:hover i {
    color: #E0762D; /* Change color on hover */
}


/* Define animations */
@keyframes fadeInLogo {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInIcons {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
