* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #4B79A1 0%, #283E51 100%);
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
}
