body {
  max-width: 100%;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

.ytSearch {
  background-color: #aaa;
  width: 75%;
  height: 40px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.searchBtn {
  margin-left: 5px;
  padding: 0 5px;
  height: 40px;
  background-color: #aaa;
}

.ytMovie ul {
  display: flex;
  justify-content: left;
  flex-direction: column;
}

.option {
  margin: 0 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.option img {
  width: 40px;
}
.option li {
  margin-left: 5px;
}

.ytMovie li {
  margin: 0 20px;
  padding: 10px 0;
  border-bottom: 1px #aaa solid;
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
  align-items: flex-start;
}
.ytMovie li img {
  margin-right: 10px;
}

h1 {
  font-size: 24px;
  padding-left: 10px;
}

.player {
  width: 100%;
  aspect-ratio: 9/16;
}

header {
  width: 100%;
  height: 40px;
}

.toggle_switch {
  margin-right: 20px;
  display: flex;
  justify-content: right;
  align-items: center;
  font-size: 30px;
}
.toggle_switch p {
  margin-right: 5px;
  font-size: 14px;
}

.toggle_switch > input {
  display: none;
}

.toggle_switch > label {
  display: block;
  position: relative;
  width: 1.8em;
  height: 1em;
  border-radius: 1em;
  background-color: #2b2a2f;
  cursor: pointer;
}

.toggle_switch > input:checked + label {
  background-color: #2dcb45;
}

.toggle_switch > label::before {
  position: absolute;
  top: 0.05em;
  left: 0.05em;
  width: 0.9em;
  height: 0.9em;
  border-radius: 0.9em;
  background-color: #fff;
  transition: 0.5s;
  content: "";
}

.toggle_switch > input:checked + label::before {
  left: calc(100% - 1em + 0.05em);
}
/*# sourceMappingURL=style.css.map */