:root {
  --color-red: #d26e8a;
  --color-white: #fbfae8;
}

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

body {
  position: relative;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-white);
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(40, 5, 20, 0.7) 100%),
    url("../assets/texture.png") center / cover no-repeat,
    var(--color-red);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 43px;
  height: 100%;
  background: url("../assets/border.png") repeat-y;
  z-index: 10;
}

body::before {
  left: 0;
}

body::after {
  right: 0;
  transform: scaleX(-1);
}

header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
}

header img {
  max-width: 100%;
  height: auto;
}

main {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 6rem;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 5rem;
  }
}

footer {
  padding: 1rem 2rem;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}
