body {
    background-color: rgb(18, 16, 16);
    color: white;
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
}


.container {
    position: relative;
    height: 100vh;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: space-between;
}

.sooncontainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90%;
}

.sooncontainer a {
    text-decoration: none;
    color: white;
    font-size: 30px;
}

.sooncontainer a:hover {
    color: rgb(190, 47, 47);
}

.footer {
    color:rgb(237, 144, 144);
    border-radius: 8px;
    margin: 10px;
    padding: 5px;
    background-color: rgba(75, 32, 32, 0.249);
    font-size: 11px;
}

.footer p {
    padding-left: 10px;
}

.bgcontainer {
    position: absolute;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    z-index: -2;

}

.bg {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 500px;
    height: 500px;
    filter: blur(200px) drop-shadow(0 0 20px rgba(255, 0, 0, 0.5));
    opacity: 10%;
    transition: transform 10s ease-in-out, opacity 10s ease-in-out;
}

#blob3 {
    transition: transform 3s ease-out; /* Smooth movement */
}