/* Reset styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: 'Orbitron', sans-serif;
    background-color: #242531; /* Color picked from the logo */
    color: #ffffff;
}

/* Center container styling */
.center-container {
    text-align: center;
}

/* Logo styling */
.logo {
    width: 200px;
    max-width: 60%;
    height: auto;
    margin-bottom: 20px;
}

/* Title styling */
.title {
    font-size: 2.5rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .title {
        font-size: 1.8rem;
    }
    .logo {
        width: 150px;
    }
}