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

html, body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    max-width: 400px;
    width: 80%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo {
        max-width: 300px;
        width: 70%;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
        width: 60%;
    }
}