body {
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Darker background so the gradient span pops */
    background-color: #0d1727;
    color: #ffffff;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    text-align: center;
    box-sizing: border-box;
}

/* Span container with the matching gradient */
.gradient-span {
    display: inline-block;
    padding: 15px; /* Creates the border effect */
    border-radius: 16px;
    /* Gradient matching the dark navy edge to the lighter starburst blue */
    background: linear-gradient(135deg, #162845 0%, #2f507a 50%, #466e9f 100%);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 320px;
    display: block;
    border-radius: 8px; /* Softens the image corners slightly inside the span */
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0 0 0.5rem 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

p {
    font-size: 1.1rem;
    color: #a8bce3;
    margin: 0;
}