body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

body {
    background: linear-gradient(to bottom, #000000 0%, #000000 60%, #FFFFFF 100%);
}

.parent {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

/* Make this the positioning context */
.content {
    position: relative;
    text-align: center;
    display: inline-block; /* so it wraps the image nicely */
}

.content img {
    height: auto;
    max-width: 100%;
    display: block;
    z-index: 1;
}

/* Overlay text on top of the image */
.content h1 {
    position: absolute;
    top: 65%;              /* center vertically */
    left: 50%;             /* center horizontally */
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 3rem;
    z-index: 2;            /* higher than the image */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Logo fades in immediately */
.logo {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

/* Text fades in 1 second after logo */
.fade-text {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 1s;  /* Wait 1 second */
}