@import url("https://fonts.googleapis.com/css2?family=Amatic+SC&family=Staatliches&display=swap");
:root {
  --yellow: #edfb4d;
  --lightblue: #eceffa;
  --font1: "Staatliches", cursive;
  --font2: "Amatic SC", cursive;
  --font3: "Inria Serif", serif;
  --font4: "Jura", sans-serif;
  --border: 3px solid #544592;
  --text: #fffae8;
}

body {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:visited {
  color: #544592;
}

ul {
  list-style-type: none;
}

img {
  width: 100%;
}

.handwritten {
  font-family: var(--font2);
  color: var(--text);
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 800ms ease;
  transition: opacity 800ms ease;
  font-size: 3rem;
  left: 0;
  top: -2rem;
}

@media (max-width: 1023px) {
  .handwritten {
    display: none;
  }
}

.sun {
  position: absolute;
  width: 15vw;
  aspect-ratio: 1 / 1;
  background-color: #ffd904;
  border-radius: 50%;
  z-index: 1;
}

.sun-1 {
  right: 20vw;
  top: 5vw;
}

@media (max-width: 1023px) {
  .sun-1 {
    top: 18vw;
  }
}

.sun-2 {
  left: 20vw;
  bottom: -5vw;
}

.sun-3, .sun-4 {
  width: 4vw;
}

.sun-3 {
  left: 55vw;
  top: 40vw;
}

.sun-4 {
  left: 10vw;
  top: 2vw;
}

.sun-5 {
  width: 6vw;
  right: 2vw;
  bottom: 2vw;
}

.container {
  height: calc(var(--vh, 1vh) * 100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #3f4d90;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.container__left, .container__right {
  width: 100%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .container__left, .container__right {
    width: 50%;
    height: 100%;
  }
}

.container__left {
  border-right: 1px solid var(--text);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1024px) {
  .container__left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.container__headline {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5vw;
  font-family: var(--font1);
  letter-spacing: 1.5px;
  color: var(--text);
}

@media (max-width: 1023px) {
  .container__headline {
    font-size: 4.5vw;
  }
}

.container__image-wrapper {
  height: 80%;
  width: 80%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .container__image-wrapper {
    height: 50%;
    width: 50%;
  }
}

.container__image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container ul {
  width: 80%;
}

.container__list-item {
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  position: relative;
}

.container__list-item a {
  font-size: 8vw;
  font-family: var(--font1);
  color: var(--text);
}

.container__list-item span {
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

@media not all and (hover: none) {
  .container__list-item:hover {
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
  }
  .container__list-item:hover .handwritten {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */