* {
    margin: 0;
    padding: 0;
}
body {
    background: url("bkg.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: "Marcellus", "Franklin Gothic Medium", "Arial Narrow", Arial,
        sans-serif;
}
h2 {
    font-size: 99px;
    color: black;
}
h1{
  font-size: 220px;
  color: purple;
  text-align: left;
  margin-left: 50px;
  margin-top: 50px;
  font-family: goldman;
}
a {
    text-decoration: none;
    font-size: 60px;
    color: black;
    font-weight: bold;
}
button {
    padding: 30px;
    background-color: grey;
    border-radius: 20px;
}
button:hover {
    background-color: purple;
    transition: 2 ease;
}
div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}
@media(max-width: 750px){
  h2{
    font-size:50px;
  }
  h1{
    font-size: 70px;
  }
  a{
    font-size: 30px;
  }
}