body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #000000;
    color: #333;
}

header {
    background-color: #000000;
    color: #ED1C24;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

/* Default Logo Size */
header img {
    width: 8%;
    height: auto;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 600px) {
    header {
        font-size: 20px;
        height: 80px;
    }
    header img {
        width: 25%;
        height: auto;
    }
    .content {
        font-size: 14px;
    }
    footer {
        font-size: 14px;
    }
}

.content {
    padding: 40px 20px;
    animation: fadeIn 1.5s ease-in-out;
    color: white;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.content h1 {
    font-size: 28px;
    color: #F15A29;
    margin-bottom: 20px;
}

.content ul {
    list-style-type: disc;
    padding-left: 20px;
}

footer {
    background-color: #000000;
    color: #F15A29;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
}

/* Animation for fading in content */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
