* {
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  background-color: #232946;
}

.heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}
@media only screen and (max-width: 800px) {
  .heading {
    grid-template-columns: 1fr;
  }
}
.heading p, .heading label {
  color: #b8c1ec;
  font-size: 18px;
  letter-spacing: 1.5px;
  line-height: 34px;
}
.heading__left--headline {
  color: #fffffe;
  font-size: 54px;
  margin-bottom: 2px;
}
.heading #videoID {
  padding: 20px 15px;
  width: 100%;
  border: none;
  border-radius: 3px;
  font-size: 18px;
}
.heading form > button {
  margin-top: 10px;
  padding: 20px;
  border-radius: 3px;
  font-weight: bold;
  background-color: #eebbc3;
  color: #232946;
  border: none;
  cursor: pointer;
  font-size: 18px;
  width: 100%;
}
.heading form > button:hover {
  background-color: #cd8c98;
  transition: 0.5s;
}

#videoContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  padding-left: 0;
  margin-top: 60px;
}
#videoContainer li {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.thumbnail {
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  transition: transform 250ms;
}
.thumbnail:hover {
  transform: scale(1.2);
}

.delete-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  border: none;
  border-radius: 100%;
  font-size: 20px;
  cursor: pointer;
}

#popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(20, 20, 20, 0.95);
  padding: 30px;
  transition: all 300ms;
}

#popup.open {
  transform: translateY(0);
  opacity: 1;
}

#popup.closed {
  transform: translateY(100vh);
  opacity: 0;
}

iframe {
  width: 100%;
  height: auto;
  max-width: 800px;
  aspect-ratio: 16/9;
  background-color: rgba(20, 20, 20, 0.95);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
}

/*# sourceMappingURL=style.css.map */
