body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #181818;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .group {
    display: flex;
    justify-content: center; /* Center the elements horizontally */
  }
  
  .block-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .block {
    background-color: #3498db;
    margin: 15px;
    overflow: none; /* or overflow: scroll; */
    border: 5px solid white;
    border-radius: 10px;
  }



  #frame10 {    
    margin-left: 80px;
  }

  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .reload-button {
    margin-top: -5px;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .reload-button:hover {
    background-color: #1e5275;
  }
  
  .video-container {
    width: 80%;
    margin: 20px auto;
    text-align: center;
  }
  
  .video-container video {
    width: 100%;
    height: auto;
    border: 5px solid white;
    border-radius: 10px;
  }

.block-container {
    text-align: center;
  }
  
  .block-title {
    font-size: 18px; /* Adjust the font size as needed */
    margin-bottom: -5px; /* Adjust the margin as needed */
    color: white; /* Make the text white */
    font-family: Arial, sans-serif; /* Use the same font as the button */
  }
  