/*variable definitions*/
/*mixin definitions*/
html {
  margin: 0;
  padding: 0;
  font-family: "Baloo 2", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #CFE8FF;
}
body header {
  display: flex;
  padding: 10px 100px;
  box-sizing: border-box;
}

.headernav {
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-list {
  display: flex;
  gap: 100px;
  list-style-type: none;
}
.menu-list li a {
  text-decoration: none;
  color: #2C4154;
  font-weight: 500;
  font-size: 24px;
  font: "Baloo 2", sans-serif;
}
.menu-list li a:hover {
  text-decoration: underline;
}

#hero {
  padding-top: 60px;
  justify-content: center;
  align-items: center;
}
#hero .text-area {
  text-align: center;
}
#hero .text-area h2 {
  font-family: "Gochi Hand";
  font-weight: 600;
  font-size: 8.5rem;
  line-height: 0.8em;
  color: #2C4154;
  margin: 0;
}
#hero .text-area p {
  font-family: "Baloo 2";
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3em;
  color: #2C4154;
}
#hero .img-container {
  display: flex;
  max-width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
}

#services {
  margin: 0;
  background-color: #ffffff;
  display: grid;
  align-items: center;
  grid-template-columns: 0.7fr 1fr;
  justify-content: space-between;
  padding-top: 60px;
  padding: 60px 100px;
}
#services .img-section img {
  height: 600px;
  width: auto;
}
#services h2 {
  font-family: "Gochi Hand";
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1.3em;
  color: #2C4154;
}
#services p {
  font-family: "Baloo 2";
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3em;
  color: #2C4154;
}

#gameContainer {
  padding-top: 70px;
  align-items: center;
  justify-content: center;
  display: flex;
}/*# sourceMappingURL=main.css.map */