:root {
  --light: #efefef;
  --dark: #0e0e0e;
  --light-pink: #fb2943;
  --dark-pink: #af0319;
}

/* for 404 page... hopefully?! */
.center-container {
  background-color: var(--light);
  color: var(--dark);
  display: grid;
  height: 700px;
  justify-content: center;
  align-content: center;
  grid-template-columns: auto auto;
  gap: 50px;
  padding: 10px;
}

.center-container > div {
  text-align: center;
}

body {
  background-color: var(--light);
  font-family:"Noto Sans", sans-serif;
  font-size: 1em;
}

h1 {
  font-family: "Bangers", system-ui;
  font-weight: 400;
  font-size: 5em;
  font-style: normal;
  letter-spacing: 0.15em;
}

a {
  color: var(--dark-pink);
  text-decoration: none;
}

a:hover {
  color: var(--light-pink);
  text-decoration: underline;
}

img {
  margin: auto;
  max-width: 100%;
}
/* responsive setting */
@media only screen and (orientation: portrait) {
    .center-container {
    display: flex;
    flex-direction: column;
}
}