:root {
  --color-red: #F2313C;
  --color-white: #ECEADA;
}
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  margin: 0;
}

h1 {
  font-weight: 900;
  font-size: 50px;
}

a {
  color: var(--color-white);
}

.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 20;
}

.instagram {
  text-decoration: underline;
}

.email {
  font-weight: 900;
  text-decoration: underline;
}

.text-large {
  font-size: 30px;
  font-weight: 700;
}

.flower {
  display: block;
  margin: 1em auto 0 auto;
}

.neko,
.daruma {
  position: absolute;
  z-index: 10;
  max-width: calc((100vw - 740px) / 2);
  min-width: 100px;
}

.neko {
  left: 0;
  bottom: 10%;
}

.daruma {
  right: 0;
  top: 10%;
}