@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  color: #666666;
  font-size: 17px;
  margin-bottom: 0;
}

.hero {
  background-image: url('./images/banner-img03.jpg');
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 95vh;
  font-family: "Poppins", serif;
  padding: 0px 40px;
  background-repeat: no-repeat;
  background-position: center;
}
h1 {
  color: #fff;
  font-size: 44px;
  font-family: "Poppins", serif;
}
h2 {
  color: #fff;
  font-size: 24px;
  font-family: "Poppins", serif;
}
.button_streaming {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", serif;
}

.button_streaming button {
  font-family: "Poppins", serif;
  border: none;
  background-color: hsl(210 70% 30%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 22px;
  cursor: pointer;
  margin-top: 32px;
  transition: all 0.25s ease-in-out;
}
.button_streaming button:hover {
  background-color: hsl(210 70% 40%);
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
#videoFrame {
    border: 1px solid #fff;
    object-fit: cover;
}
input[type="file"] {
  font-family: "Poppins", serif;
  margin: auto;
  transition: border-color 0.25s ease-in-out;
  color: #fff; /* Changes the file name text color */
  font-size: 16px;
  &::file-selector-button {
    padding: 1em 1.5em;
    border-width: 0;
    border-radius: 2em;
    background-color: hsl(210, 70%, 30%);
    color: hsl(210, 40%, 90%);
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    margin-right: 1em;
  }

  &:hover {
    border-color: #888;

    &::file-selector-button {
      color: #fff;
      background-color: hsl(210, 70%, 40%);
    }
  }
}
