
body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #0d1b2a, #162447);
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to right, #1e0099, #4d00ff);
    color: #ffffff;
}

header h1 {
    font-size: 3rem;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.section:hover {
    transform: scale(1.02);
}

.section h2 {
    color: #8c56ff;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.section p {
    font-size: 1rem;
    color: #e0e0e0;
}

button {
    background-color: #00bcd4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

button:hover {
    background-color: #0097a7;
    transform: scale(1.1);
}

pre {
    background: #1c1c1c;
    color: #00ff7f;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-size: 0.9rem;
}

code {
    font-family: 'Courier New', monospace;
    color: #00ff7f;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    border: 1px solid #444;
    padding: 10px;
    text-align: left;
    color: #ffffff;
}

table th {
    background: #1e0099;
}

.image-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.image-container img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    pre {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    .section h2 {
        font-size: 1.2rem;
    }

    button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

