body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #a0a0a0, #c8c8c8);
    color: white;
    font-family: 'Varela Round', sans-serif;
    text-align: center;
}

.container {
    position: relative;
    max-width: 600px;
    width: 90%;
    margin: 10px;
    padding: 20px;
    background: #0000CC;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
}

.logo {
    max-width: 250px;
    margin: 0 auto 20px;
}

.logo img {
    width: 100%;
    height: auto;
}

h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
}

p {
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: #e7e7e7;
}

.rocket-container {
    font-size: 2rem;
    position: absolute;
    bottom: 5px;
    left: -50px;
    opacity: 0;
    animation: fly 5s cubic-bezier(0.390, 0.575, 0.565, 1.000) forwards;
}

@keyframes fly {
    0% {
        left: -50px;
        opacity: 0;
        transform: translateX(0);
    }
    50% {
        left: 50%;
        opacity: 1;
        transform: translateX(-50%);
    }    
    100% {
        left: calc(100% + 50px);
        opacity: 0;
        transform: translateX(0);
    }
}
