body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #333;
  color: white;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 0;
}

.navbar a, .navbar span {
  color: white;
  text-decoration: none;
  justify-content: start;
  padding: 10px;
}

.navbar .logo-box {
  display: flex;
  align-items: center;
}

.navbar .logo {
  font-size: 2em;
  font-family: "PT Mono", monospace;
  font-weight: 400;
  font-style: normal;
  margin-left: 10px;
}

.navbar .menu-items {
  margin-left: auto; /* This pushes all the menu items to the right */
  display: flex;
  align-items: center;
}

.navbar .menu-items a {
  margin-left: 2.5em;
}

.navbar .menu-item {
  font-size: 1em;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;

  transition: 0.25s;
}

.navbar .menu-item:hover,
.navbar .menu-item:focus {
  color: #68EFC6;
  transform: translateY(-0.15em);
}

.navbar .menu-item.tooltip {
  cursor: se-resize
}

.tooltip { position: relative; }
.tooltip::before {
  content: attr(data-tooltip);
  display: inline-block;
  position: absolute; 
  background: #000; color: #FFF; padding: 5px; border-radius: 5px;
  opacity:0; transition:0.3s; overflow:hidden;
  max-width: 140px;
  height: 20px;
  top: 100%;
  pointer-events: none; /* prevents tooltip from firing on pseudo hover */
}
.tooltip:hover::before { opacity:1; }

.navbar .menu-button {
  font-size: 1em;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;

  background-color: #68EFC6;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  box-shadow: inset 0 4px 0 #ffffff80, inset 0 -4px 0 #83838380, 0 4px 4px #00000030;

  transition: 0.25s;
}

.navbar .menu-button:hover,
.navbar .menu-button:focus {
  box-shadow: inset 0 -4px 0 0 #ffffff80, inset 0 4px 0 #00000080, 0 4px 4px #00000030;
  color: #fff;
  background-color: #48a68a;
}

.content {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-gap: 3em;
  margin: 3em 0;
}

.box h2 {
  margin: 0 0 1.2em 0;
  font-size: 1.2em;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.box p {
  margin: 0;
  font-size: 1.8em;
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
}

.box {
  padding: 1.2em;
  box-sizing: border-box;
  border: 1px solid transparent;
  background-color: #232323;
}

.box, .content-screenshot {
  border-radius: 10px;
  box-shadow: 0 4px 20px #00000030;
  transition: 0.25s;
}

.box:hover, .content-screenshot:hover {
  border-color: #68EFC6;
  transform: translateY(-0.15em);
}

.content .box {
  display: grid;
  grid-template-columns: 1fr 2fr 0.5fr;
  position: relative;
}

.box .art {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box .art-box-cloud {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
}

.box .art-watermark-cloud {
  position: absolute;
  right: 0;
  top: 25px;
}

.box .art-box-region {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

.box .art-box-region-item {
  border-radius: 10px;
  background-color: #2c2c2c;
  padding: 10px 20px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-size: 1.2em;
}

.box .art-watermark-region {
  position: absolute;
  right: 0;
  top: 0;
}

.content-minor {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 3em;
  padding: 0 0 3em 0;
}

.content-screenshot {
  margin: 0 0 3em 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 213px;
}

.content-screenshot img {
  width: 100%;
  min-width: 800px;
  height: auto;
  position: relative;
  left: 100%;
  transform: translateX(-100%);
}

.content-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;;
  gap: 3em;
  padding-bottom: 3em;
}

.content-bottom p {
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-size: 2em;
  color: #68EFC6;
}

.hero {
  max-width: 900px;
}

.hero h1 {
  font-size: 6em;
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-style: normal;

}
.hero h1 span {
  color: #68EFC6;
}
.hero p {
  font-size: 2em;
  font-family: "Rajdhani", sans-serif;
  font-weight: 300;
  font-style: normal;
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    gap: 1em;
  }
  .navbar .menu-items {
    flex-direction: column;
    margin-left: 0;
  }
  .hero h1 {
    font-size: 4em;
  }
  .hero p {
    font-size: 1.5em;
  }
  .content .box {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  .content-minor {
    grid-template-columns: 1fr;
  }
  .content .art-box-deploy img {
    width: 100%;
    height: auto;
  }
  .content-screenshot img {
    position: absolute;
    right: 0;
  }
}

.rajdhani-light {
  font-family: "Rajdhani", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.rajdhani-regular {
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.rajdhani-medium {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.rajdhani-semibold {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.rajdhani-bold {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-style: normal;
}
