
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom, #0F4C81, #000000);
    color: #EAEAEA;
    line-height: 1.6;
    animation: aurora-move 15s linear infinite;
}
@keyframes aurora-move {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #FF9F1C;
    text-align: center;
}
p {
    color: #EAEAEA;
    padding: 0 20px;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.card {
    background: rgba(255, 159, 28, 0.1);
    border: 1px solid #FF9F1C;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: scale(1.05);
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
button {
    background-color: #0F4C81;
    color: #FF9F1C;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
button:active {
    transform: scale(0.95);
}
pre {
    background: #0F4C81;
    color: #FF9F1C;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #FF9F1C;
}
th, td {
    border: 1px solid #FF9F1C;
    padding: 10px;
    text-align: left;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    h1 {
        font-size: 24px;
    }
    .card {
        width: 90%;
    }
}

