/* Box Model Hack */
* {
  box-sizing: border-box;
}
body {
  background: black;
  background-image: url(https://i.ibb.co/7kcCsRv/webb-First-Deep-Field.png);
  color: white;
  margin: 2rem;
}
.tops {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
h2 {
  text-decoration: underline;
}
h3 {
  width: 100%;
}
p {
  font-size: 1.25rem;
  padding: 2% 10%;
}
.hidden {
  display: none;
}
img {
  max-height: 95vh;
  max-width: 95vw;
  border: 3px solid white;
}
iframe {
  height: 95vh;
  width: 95vw;
}
.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem;
  text-align: center;
  height: 25rem;
  width: 30rem;
  box-shadow: 0 0 75px 10px rgba(255,255,255,0.9);
  background: rgba(255, 255, 255, .25);
  border-radius: 1rem;
  border: 3px solid white;
}


button {
  margin: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  height: 6rem;
  width: 12rem;
  color: white;
  background: rgb(153, 27, 27);
  border: 4px solid white;
  border-radius: 15px;
}
button:hover,
button:focus {
  transition: 0.5s;
  background: rgb(220, 38, 38);
  border: 4px solid white;
}
aside {
  font-size: 1.25rem;
  text-align: center;
  padding: .25%;
  color: white;
}
input {
  margin: 1rem;
  font-size: 1.25rem;
  height: 50px;
  width: 200px;
}
a {
  color: white;
}

@media all and (max-width:992px) {
  .content {
    height: 35rem;
    width: 55rem;
  }
  aside {
    font-size: 2.5rem;
  }
  button {
    font-size: 2.75rem;
    height: 10rem;
    width: 22rem;
  }
  input {
    font-size: 2.25rem;
    height: 100px;
    width: 300px;
  }
}