/* Reset and Global Styles */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    color: white;
    padding: 20px;
}

/* Logo Container */
.logo-container {
    margin-top: 50px;
}

.logo-text {
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

/* Main Content */
.container {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    backdrop-filter: blur(5px);
}

h1 {
    color: #333;
}

h2 {
    color: #333;
    margin-top: 20px;
}

p {
    color: #666;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        height: auto;
        padding: 20px;
    }

    .logo-container {
        margin-top: 20px;
    }

    .container {
        width: 90%;
        margin-top: 10px;
    }
}
