body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #ece9e6, #ffffff);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.container.visible {
    opacity: 1;
    transform: translateY(0);
}

h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

p {
    text-align: left;
    line-height: 1.6;
}

h2 {
    color: #333;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 5px;
    margin-top: 1em;
    text-align: left;
}

h3, h4 {
    color: #444;
    margin-top: 1em;
    text-align: left;
}

ul {
    text-align: left;
    list-style-type: disc;
    margin-left: 20px;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
