body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
    background-color: #f0f0f0;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

#center-image {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.company-name {
    font-size: 2.5rem;
    color: #012245;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 0.5s;
}

.company-slogan {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 1s;
}

.btn-learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #012245;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 1.5s;
}

.btn-learn-more:hover {
    background-color: #023e7d;
}

@keyframes fadeIn {
    to { opacity: 1; }
}