/* Splash Page - Under Development */

#underdev {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

#underdev .logo-header img {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

#underdev h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#underdev p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

#underdev .dev-btn {
    display: inline-block;
    background-color: #FFD700; /* yellow button */
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

#underdev .dev-btn:hover {
    background-color: #FFC200;
}
