* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-image: url("/bg.png");
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.menu-bar {
  background-color: #1988f7;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}

.animate__animated.animate__backInDown {
  --animate-duration: .4s;
}

.animate__animated.animate__fadeInRight {
  --animate-duration: 1.8s;
}

.item {
  color: white;
  font-size: 18px;
  display: inline-block;
  box-sizing: border-box;
  padding: 14px 20px;
}

.item.title {
  font-weight: 600;
  transition: .4s ease;
}

.item.title:hover {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>😉</text></svg>") 16 0, auto;
  /*!emojicursor.app*/
}

.item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.group a {
  font-size: x-large;
  text-decoration: none;
  font-weight: 400;

}

main {
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-weight: bold;
  margin-block: 2rem;
  font-size: 4rem;
}

h1 {
  font-size: 32px;
}