/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */



body {
  background-color: rgb(36, 7, 69);
  color: white;
  font-family: "Times New Roman", Times, serif;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: black;
  border-bottom: 1px solid #ddd;
}

.logo {
  color: black;
  margin-right: 20px;
}

.search {
  flex: 1;
  padding: 8px;
  font-size: 16px;
}

/* Video grid */
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.video {
  background: white;
  padding: 10px;
  cursor: pointer;
}

.thumbnail {
  background: #ccc;
  height: 140px;
  margin-bottom: 10px;
}

.title {
  font-weight: bold;
}

  
.textbox { 
    width: 375px;
    border: 2px black; 
    padding: 15px; 
    margin: 20px; 
    border-radius: 10px; 
    background-color: black;
    } 
    
/* Hide the default radio button */
input[type="radio"] {
  display: none;
}

/* Style for the label that will represent the radio button */
.radio-label {
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 10px;
  padding: 5px 20px;
  border: 2px solid #ddd;
  border-radius: 15px;
  cursor: pointer;
}

/* Style when the radio button is checked */
input[type="radio"]:checked + .radio-label {
  border-color: #009688;
  background-color: #009688;
  color: white;
}

  