.hero {
  padding-top: 64px;
  padding-bottom: 100px;
  background-image: url(../images/picnic.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero .container {
  position: relative;
}
.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.7;
  backdrop-filter: blur(10px);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
}
.hero__text {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 60px;
  line-height: 56px;
  font-weight: 800;
  text-align: center;
}
.hero__text p span {
  margin-bottom: 40px;
}

.hero__logo {
  margin: 0 auto;
  height: 80px;
  display: block;
}
@media (max-width: 640px) {
  .hero {
    padding: 40px 0;
  }
  .hero__logo {
    height: 40px;
  }
  .hero__text {
    font-size: 22px;
    line-height: 24px;
    margin: 24px 0;
  }
}

.infos-bar {
  padding: 16px 24px;
  background-color: #f4f4f4;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
.infos-bar__infos {
  display: flex;
  gap: 100px;
}
.infos-bar__infos__item {
  font-size: 14px;
  color: #000;
}
.infos-bar__infos__item b {
  color: #000;
  font-size: 18px;
  display: block;
}
@media (max-width: 640px) {
  .infos-bar {
    display: block;
  }
  .infos-bar__infos {
    display: block;
  }
  .infos-bar__infos__item {
    margin-bottom: 24px;
  }
}
@media (max-width: 1024px) {
  .infos-bar__infos {
    gap: 16px;
  }
}

.button {
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.button--primary {
  color: #f4f4f4;
  border-radius: 8px;
  background-color: #f8b601;
}
@media (max-width: 640px) {
  .button {
    display: block;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .button {
    display: flex;
    align-items: center;
  }
}

.event {
  padding: 80px 0;
  background-image: url(../images/Classroom_Floor_PG_Texture.png);
}
.event--image-left .container {
  flex-direction: row-reverse;
}
.event .container {
  text-align: center;
  align-items: center;
  display: flex;
  gap: 40px;
}
.event__image {
  width: 400px;
  height: auto;
  border-radius: 8px;
}
.event__details__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}
.event__details__description {
  line-height: 22px;
}
@media (max-width: 640px) {
  .event .container {
    display: block;
  }
  .event__image {
    width: 100%;
  }
  .event__details {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

#app {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 3rem;
  height: 100vh;
  background-image: url(../images/kk.png);
}


.dialogue {
  position: relative;
  display: flex;
  max-height: 50%;
  min-height: 200px;
  min-width: 40px;
  width: 60%;
}

.dialogue-blobs {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  filter: url("#fancy-goo");
  transform: scale(0);
  animation: scale-up 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1s 1 normal forwards;
}

.dialogue-blob-top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 75%;
  background-color: #fdf8e3;
  border-radius: 40% 40% 30% 30%/150% 150% 150% 150%;
  animation: blob 1.5s cubic-bezier(0.37, 0, 0.63, 1) 0.3s infinite alternate;
  transform-origin: center;
}

.dialogue-blob-bottom {
  position: absolute;
  bottom: 0;
  width: 94%;
  height: 40%;
  background-color: #fdf8e3;
  border-radius: 5% 5% 20% 20%/100% 100% 100% 100%;
  animation: blob 1s infinite alternate cubic-bezier(0.37, 0, 0.63, 1);
  transform-origin: center;
}

.dialogue-character-wrap {
  position: absolute;
  animation: character 0.6s infinite alternate cubic-bezier(0.37, 0, 0.63, 1);
}

.dialogue-character {
  display: inline-block;
  margin-right: auto;
  padding: 0.5rem 2rem;
  font-family: 'seurat';
  font-size: 2rem;
  color: #482016;
  background-color: #dd8530;
  border-radius: 30%/100% 100% 120% 120%;
  transform: perspective(2rem) rotateX(1deg) rotateZ(-9deg) translateX(20%) translateY(-45%) scale(0);
  animation: fade-character 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 1s 1 normal forwards;
}

.dialogue-text {
  position: absolute;
  width: 100%;
  padding: 1em 1em 2em 1.5em;
  font-family: 'seurat';
  font-size: 3rem;
  line-height: 1.5em;
  color: #807256;
}

.arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  opacity: 0;
  animation: arrow 0.6s cubic-bezier(0.37, 0, 0.63, 1) 4.5s infinite alternate;
}

@keyframes blob {
  from {
    transform: rotate(0.3deg) scale(1);
  }
  to {
    transform: rotate(-0.3deg) scale(0.99);
  }
}
@keyframes character {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(3px);
  }
}
@keyframes scale-up {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-character {
  from {
    transform: perspective(2rem) rotateX(1deg) rotateZ(0deg) translateX(20%) translateY(-45%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: perspective(2rem) rotateX(1deg) rotateZ(-6deg) translateX(20%) translateY(-45%) scale(1);
    opacity: 1;
  }
}
@keyframes arrow {
  from {
    transform: translateY(33%) translateX(-50%) scale(1);
    opacity: 1;
  }
  to {
    transform: translateY(50%) translateX(-50%) scale(0.9);
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #f4f4f4;
  list-style: none;
  font-family: 'seurat';
}

@font-face {
  font-family: 'seurat';
  src: url('../styles/font/FOT-Seurat\ Pro\ B.otf') format('truetype');
  font-weight: normal;
    font-style: normal;
}

body {
  font-family: 'seurat';
}

.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .container {
    max-width: 80%;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 90%;
  }
}/*# sourceMappingURL=main.css.map */