* {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;

}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  height: 100vh;
  
  overflow: hidden;
}

video {
  min-width: 600px;
  width: 50vw;
}



input, button {
  min-width: 500px;
  width: 40vw;
  
  padding: 10px;
  font-size: 14px;
  
}

button {
  min-width: 0;
  width: 100px;
  
  margin-left: -2px;
}

h2, h3 {
  font-weight: normal;
}

h1 {
  font-size: 18px;
}

h2 {
  color: grey;
  font-size: 16px;
}

h3 {
  color: lightgrey;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: inherit;
}
#search-div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  
  padding: 7px;
}

#search-results {
  position: absolute;

  border: 1px black solid;

  overflow-x: hidden;
  overflow-y: scroll;

  width: 50vw;
  height: 50vh;

  display: none;

  background-color: white;
}

.result-text {
  width: 100%;
  
  overflow: hidden;
}

.yt-result {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  
  padding: 10px;
}

.result-img {
  height: 100px;
}

.err {
  color: red;
}

#download-button {
    color: blue;
}
