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

html,
body {
  background-color: black;
  height: 100vh;
  background-image: url("./flames.jpeg");
  background-repeat: no-repeat, repeat;
  background-size: cover;
}

h1 {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: aliceblue;
}

.container {
  display: flex;
  flex-direction: column;
  padding: 5%;
  align-items: center;
  justify-items: center;
}

.container img {
  width: 50vw;
}
