* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Open Sans', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    animation: fadeInBackground 2s ease-in;
}

@keyframes fadeInBackground {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
    animation: fadeInLogo 2s ease-in;
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffffff;
    animation: fadeInText 3s ease-in;
}

main p {
    font-size: 1.5rem;
    color: #ffffff;
    animation: fadeInText 3s ease-in 1s;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}