body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e9ecef;
    color: #343a40;
    margin: 0;
    padding: 0;
}

header {
    background-color: #495057;
    color: #f8f9fa;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

main {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.coming-soon {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.coming-soon:hover {
    transform: scale(1.02);
}

h1 {
    font-size: 2.8em;
    margin: 0;
}

h2 {
    color: #495057;
    font-size: 2em;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    font-size: 1.2em;
    margin: 0 0 20px 0;
}

footer {
    text-align: center;
    padding: 15px 0;
    background-color: #495057;
    color: #f8f9fa;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.5em;
    }
    .coming-soon {
        padding: 30px;
    }
}


.home-container {
    position: absolute;
    /* Change position to fixed */
    top: 20px;
    left: 5%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #393738, #333336);
    padding: 0.5rem 1rem;
    /* Adjust padding to make the container smaller */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    z-index: 999;
    /* Ensure it appears above other content */
    filter: drop-shadow(0px 0px 10px rgb(197, 9, 90));
    transition: transform 1s, box-shadow 0.3s, top 0.3s;
}


.home {
    font-size: 1.5rem;
    /* Adjust font size */
    color: rgb(255, 255, 255);
    text-shadow: 0 2px 3px rgb(3, 17, 54);
    animation: glow 1.5s infinite alternate;
    margin: 0;

}