* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
}
.head {
  display: flex;
  text-align: center;
  justify-content: space-between;
  margin-top: 20px;
  max-width: 90%;
  margin: 0 auto;
  border-bottom: 1px solid white;
}
.Search-bar {
  display: flex;
  text-align: center;
}
.Search-bar input {
  width: 800px;
  padding: 15px;
  border-radius: 10px;
  margin-top: 10px;
}
.Search-bar button {
  border-radius: 10px;
  padding-inline: 5px;
  margin-top: 10px;
  margin-bottom: 13px;
  font-size: 20px;
}
i {
  font-size: 50px;
  margin-top: 10px;
  color: aliceblue;
}
.logo-youtube {
  font-size: 40px;
  padding: 5px;
  color: red;
  margin-top: 10px;
}
button i {
  font-size: 20px;
  color: black;
}
button:hover {
  background-color: rgba(212, 230, 236, 0.078);
  color: aliceblue;
  padding-inline: 10px;
}
/* MARK:video */
.Video iframe {
  width: 90%;
  height: 550px;
  margin-left: 75px;
  margin-top: 20px;
}
/* MARK: footer */
.footers {
  border-top: 1px solid white;
  margin-top: 10px;
}
.foot-side {
  display: flex;
  justify-content: space-between;
}
.foot-side p {
  color: white;
  text-decoration: none;
  font-size: 40px;
  margin-left: 70px;
  margin-top: 30px;
}
.foot-side nav {
  display: flex;
  gap: -40px;
}
.foot-side nav i {
  font-size: 30px;
  margin-right: 70px;
  margin-top: 30px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
