@font-face {
  font-family: gothic;
  src: url("Blacklettersh.ttf");
}

@font-face {
  font-family: chomsky;
  src: url("Chomsky.otf");
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(0, 0, 0);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
  min-height: 100vh;
}

h1 {
  color: rgba(239, 11, 11, 0.974);
  font-size: 6em;
  font-family: gothic;
}

button{
  font-family: chomsky;
  font-size: 1.7rem;
  border-radius: 10px;
  color: red;
  cursor: pointer;
  padding: 0 0.4rem;
  background-color: black;
  border: 2px solid red
}

button:hover{
  background-color: red;
  color: white
}

iframe{
  border-radius: 20px;
  width: 450px;
  height: 320px;
}

.space-taker{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer{
  font-family: chomsky;
  color: rgba(239, 11, 11, 0.974);
  font-size: 2rem
}

@media only screen and (max-width: 700px) {
  h1 {
    font-size: 3.5rem;
  }
  iframe {
    margin-top: 1rem;
    width: 400px;
    height: 300px;
  }
  footer{
    font-size: 1.8rem
  }
}
