/* Reset and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

/* Header styles */
.header {
    text-align: center;
    padding: 20px;
    position: relative;
    height: 30vh;
}

.logo-container {
    position: relative;
    animation: dropDown 1.5s ease-out forwards;
    opacity: 0;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* Main content styles */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out 2s forwards;
    opacity: 0;
}

.intro p {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 2.5s forwards;
    opacity: 0;
}

/* Animations */
@keyframes dropDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}