body {
  box-sizing: border-box;
  background: url('https://1stwebdesigner.com/wp-content/uploads/2014/04/Wallpapers-For-Designers-50.png') no-repeat center center fixed;
  background-size: cover;
}

h1 {
  font-family: 'Pacifio', cursive;
  text-align: center;
  color: #ffb3b3;
}

h2 {
  color: #ff4d4d;
  font-family: 'Pacifio', cursive;
}

.container {
  text-align: center;
}

.input {
  padding: 4px;
  width: 300px;
  border-radius: 0;
  outline: none;
  font-family: Sans-Serif;
}

.submit {
  border-radius: 0;
  margin-top: 10px;
  padding: 10px;
  font-size: 15px;
  outline: none;
  cursor: pointer;
  border: none;
  background-color: #800000;
  color: #ffffff;
  transition: all 0.3s ease;
  font-family: Sans-Serif;
}

.results {
  display: inline-block;
  margin-top: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
  width: 50%;
  border-radius: 4px;
  font-family: Sans-Serif;
  color: white;
}

.title h2 {
  color: #1a0000;
  text-transform: capitalize;
  font-weight: bold;
}

.results-youtube ul {
  list-style-type: none;
}

.results-youtube {
  margin-top: 6px;
  background-color: gray;
  display: inline-block;
  border-radius: 4px;
  width: 50%;
  font-family: Sans-Serif;
}

.youtubeButton {
  border-radius: 0;
  margin-top: 10px;
  padding: 10px;
  font-size: 15px;
  outline: none;
  cursor: pointer;
  border: none;
  background-color: #800000;
  color: #ffffff;
  transition: all 0.3s ease;
  font-family: Sans-Serif;
  text-transform: capitalize;
}

.submit:hover {
  background-color: #363946;
  color: #ebca52;
}

.youtubeButton:hover {
  background-color: #363946;
  color: #ebca52;
}

img {
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .input {
    width: 50%;
    padding: 2px;
  }
  .results {
    width: 100%;
  }
  .results-youtube {
    width: 100%;
  }
  img {
    width: 80%;
  }
}