/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0d0d0d;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 20px;
}

/* Centered Logo */
.logo-img {
    width: 300px;         /* adjust as needed */
    margin-bottom: 30px;
}

/* Titles */
.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.85;
    margin-top: 10px;
}

.footer {
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.6;
}
