body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #222529 50%, #ffffff 50%);
    color: #ffffff;
}

header {
    background-color: #222529;
    text-align: center;
    padding: 20px;
}

section {
    display: flex;
    max-width: 800px;
    margin: 20px auto;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.left-section {
    flex: 1;
    padding: 20px;
    background-color: #222529;
    color: #ffffff;
}

.right-section {
    flex: 1;
    padding: 20px;
}

h1 {
    color: #ffffff;
}

h2 {
    color: #222529;
}

p {
    color: #555;
    line-height: 1.6;
    animation: flyIn 2s ease-in-out;
}

footer {
    background-color: #222529;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@keyframes flyIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes flyout {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}.left-section img {
    animation: flyout 2s ease-out;
}