body {
    overflow-x: hidden;
}

.background {
background-image: url(/res/background/calendars.png);
}

.title {
    text-align: center;
    color: rgb(31, 124, 251);
    font-size: 100px;
    font-weight: bold;
    margin-left: 300px;
}

.podtitle {
    text-align: center;
    margin-top: 20px;
    color: rgb(77, 77, 77);
    font-size: 50px;
    font-weight: bold;
    margin-left: 300px;
    margin-bottom: 70px;
}

.content {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-left: 280px;
}

.comma {
    text-align: center;
    margin-left: 300px;
    margin-bottom: 10px;
}

.date {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: -150px;
    font-weight: bold;
}

.video-time {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 180px;
    font-weight: bold;
}

.space {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .title {
        font-size: 40px;
    }

    .podtitle {
        font-size: 24px;
    }

    .content {
        font-size: 20px;
        flex-direction: column;
        align-items: center;
    }

    .video-time {
        margin-left: 0;
    }
}
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 250px;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .menu-toggle {
    display: block;
    color: white;
    background-color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 24px;
  }

  .title,
  .podtitle,
  .content,
  .comma,
  .date {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    padding: 0 10px;
  }

  .title {
    font-size: 40px;
    margin-top: 60px;
  }

  .podtitle {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .content {
    font-size: 20px;
  }

  .video-time {
    margin-left: 10px;
    display: inline-block;
  }

  .comma {
    font-size: 14px;
  }

  .date {
    margin-left: 0;
  }

  .space {
    margin-top: 60px;
  }
}
