body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background: linear-gradient(to bottom right, #360033, #0b8793);
    /* путь к вашему изображению */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* чтобы изображение оставалось на месте при прокрутке */
}

.main img {
    margin-left: 5%;
    margin-top: 1%;
    width: 50px;
    height: 50px;
}

.schedule {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 3%;
    padding: 80px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
    color: #333;
}

td {
    background-color: #fff;
}

.note {
    color: #777;
    font-style: italic;
    font-size: 0.9em;
}