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;
}

/* Default Logo Size */
header img {
    width: 8%;
    height: 8%;
}

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

.content {
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
    color: white;
}

footer {
    background-color: #000000;
    color: #FEE102;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a{
    color: #FEE102;
    text-decoration: none;
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
