body {
    font-family: Arial, sans-serif;
    background-color: #262626;
    color: #f4f4f4;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    padding: 15px;
}

.container {
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

.shape1, .shape2 {
    position: absolute;
    background: #404040;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -150px;
    transform: rotate(45deg);
}

.shape2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    right: -250px;
    transform: rotate(-45deg);
}

.title {
    color: #ffffff;
    font-size: 2.5em;
}

.subtitle {
    color: #dddddd;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.contact a {
    color: #59b3e6;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.coming-soon {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) { 
    .title {
        font-size: 2em;
    }
    .subtitle {
        font-size: 1.2em;
    }
    .shape1 {
        display: none;
    }
    .shape2 {
        display: none;
    }
}
