* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #0000FF 0%, #000000 70%);
}

.hero-logo {
    max-width: 80%;
    max-height: 60%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Large Desktop */
@media (max-width: 1440px) {
    .hero-logo {
        max-width: 70%;
        max-height: 55%;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-logo {
        max-width: 75%;
        max-height: 50%;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 80%;
        max-height: 45%;
    }
}

/* Mobile */
@media (max-width: 425px) {
    .hero-logo {
        max-width: 85%;
        max-height: 40%;
    }
}