    /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
    img {
     max-width: 100%;;
  }

  .container {
    text-align: center;
    flex: 1;
    padding: 5px;
    font-weight: bold;
  }

      section.video-grid {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
      }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 600px) { 
    
    img {
     max-width: 35%;;
  }
  .container {
    text-align: center;
    flex: 1;
    padding: 20px;
    margin-bottom: 40px;
    font-weight: bold;
  }

  .video-grid {
        grid-template-columns: 1fr;
        padding: 5px;
      }

}


body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  height: auto;
  margin: 20px 0;
}
footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #333;
}
a {
  color: white;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: blanchedalmond;
}

.video-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 20px clamp(2rem, 8vw, 120px);
      background-color: #000;
      margin-bottom: 20px;
    }

    .video-grid a {
      display: block;
      border-radius: 20px;
      overflow: hidden;
    }

    .video-grid video {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

 