.python-bg{
    background-color: #090A3B !important;
}
.python-font {
    color: #FFF7AA !important;
    font-weight: 800;
    display: flex;
    justify-content: center;  /* Horizontal centering */
    align-items: center;      /* Vertical centering */
    text-align: center;       /* Ensures multi-line text is centered */
    height: 100%;             /* Or any fixed height like 100px, 200px */
    font-size: 1.3rem;
}
/* ---------- Hero Section ---------- */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #9376AC, #704C8F, #522B72);
    color: #FFF7AA;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-weight: 900;
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: #D6EFA0;
}

/* ---------- Features Section ---------- */
.feature {
    background-color: #090A3B;
    color: #FFF7AA;
    font-weight: 800;
    transition: transform 0.2s;
}

.feature:hover {
    transform: translateY(-5px);
}
.timestamp-links{
    text-decoration: none;
    font-weight: bold;
    color: black;
    background-color: #eee;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
}
.timestamp-links:hover{
    font-style: italic;
}
.timestamp-links:visited{
    color: blue;
    text-decoration: line-through;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}
