/* Reset some default spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full height and centered content */
body {
    background-color: #000;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container styles with a fade-in effect */
.container {
    text-align: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* When fade-in class is added, show the container */
.container.fade-in {
    opacity: 1;
}

/* Heading styles */
h1 {
    font-size: 4rem;
    color: #FFF;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Subheading/paragraph styles */
p {
    font-size: 1.5rem;
    color: #333;
}
