@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

* {
  font-family: 'Caveat', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  background-color: #722f37;
  color: #ffffff;
}

/* aniamowane tlo */

.heart-container {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.heart {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #e63946;
  animation: floatUp 5s linear infinite;
  opacity: 0.8;
  mask-border: radial-gradient(#000 69%, #0000 70%) 84.5%/50%;
  clip-path: polygon(-42% 0, 50% 91%, 142% 0);
  pointer-events: none;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

h1 {
  font-size: 3em;
  font-weight: 700;
  padding: 50px 0;
  text-align: center;
}

#container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.sentence-box {
  width: 20%;
  text-align: center;
  padding: 50px;
  margin: 20px;
  font-size: 1.3em;

  border-radius: 50px;
  background: #722f37;
  box-shadow: 35px 35px 70px #61282f, -35px -35px 70px #83363f;
}

/* menu */

.game-link {
  position: fixed;
  top: 10px;
  right: 10px;
  font-size: 2.5em;
  color: #e63946;
  opacity: 0.8;
  text-decoration: none;
  z-index: 1000;
}
