body {
  background-color: black;
  color: white;
  padding: 0;
  margin: 0;
}
.container {
  display: flex;
  grid-template-columns: 1fr 1fr;
}
img {
  width: 500px;
}
.content {
  width: 250px;
  position: relative;
  top: 120px;
  text-align: left;
}
hr {
  width: 100px;
  text-align: left;
  position: relative;
  left: -70px;
  border-style: none;
  height: 4px;
  color: white;
  background-color: white;
}
h1 {
  color: rgb(255, 25, 0);
  text-shadow: 1px 1px 1px grey, -1px -1px 1px grey;
}
p {
  font-weight: 300;
}
button {
  padding: 10px;
  border-style: none;
  border-radius: 20px;
  background-color: rgb(0, 115, 255);
  transition: step-end;
}
button:active {
  padding: 10px;
  border-style: none;
  border-radius: 20px;
  background-color: rgb(60, 148, 255);
}
