* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Arial', sans-serif;

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    color: white;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

}



.container {

    text-align: center;

    padding: 2rem;

}



.logo {

    max-width: 300px;

    margin-bottom: 2rem;

    border-radius: 10px;

}



h1 {

    font-size: 3rem;

    margin-bottom: 1rem;

}



h2 {

    font-size: 1.5rem;

    font-weight: 300;

    margin-bottom: 2rem;

}



.coming-soon {

    font-size: 2rem;

    margin: 2rem 0;

    font-weight: bold;

}



.contact {

    margin-top: 3rem;

}



.contact p {

    font-size: 1.2rem;

    margin: 1rem 0;

}



.contact a {

    color: white;

    text-decoration: none;

    border-bottom: 2px solid white;

}



.contact a:hover {

    opacity: 0.8;

}

