.animation-content { display:flex; justify-content: center;}
.logo { width: 50px; }
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: #333;
}
.header {
    background-color: #fff;
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
}
.header img {
    height: 30px;
}
.content {
    text-align: center;
    margin: 0px 0px;
}
.content h1 {
    font-size: 2em;
    margin-bottom: 20px;
}
.content p {
    font-size: 1.2em;
    margin-bottom: 40px;
}
.content .button {
    padding: 8px 30px;
    font-size: 1em;
    background-color: #5D33FB;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}
.content button:hover {
    background-color: #0056b3;
}
.images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.images img {
    width: 300px;
    border-radius: 10px;
}
.footer {
    margin-top: 40px;
    font-size: 1em;
    color: #666;
}