/* From Uiverse.io by Kabak */ 

/* button {
  height: 50px;
  margin: 5px;
  width: 120px;
  background: #333;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  font-family: Consolas, Courier New, monospace;
  border: solid #404c5d 1px;
  font-size: 16px;
  color: rgb(161, 161, 161);
  transition: 500ms;
  border-radius: 5px;
  background: linear-gradient(145deg, #2e2d2d, #212121);
  box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
    inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
}

button:hover {
  box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
  color: #d6d6d6;
  transition: 500ms;
}

button:active {
  box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
  color: #d6d6d6;
  transition: 100ms;
}

body {
  margin: 0;
  width: 100%;
  height: 100vh;
  background-color: #313131;
  background-image: radial-gradient(rgba(255, 255, 255, 0.171) 2px, transparent 0);
  background-size: 30px 30px;
  background-position: -5px -5px;
}


body {
  font-family: 'Poppins', sans-serif;
  padding-top: 100px;
}

h1 {
  display: block;
  font-size: 5em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
  color: white;
} */

.container {
  width: 100%;
  height: 100%;
  margin-left: 0px;
  background-color: #313131;
  background-image: radial-gradient(rgba(255, 255, 255, 0.171) 2px, transparent 0);
  background-size: 30px 30px;
  background-position: -5px -5px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  position: fixed;
  top: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 80px;
  background: #222;
  border-radius: 20px;
  z-index: 1000;
  padding-top: 20px;
}

.navbar-title {
  display: none;
}

.navbar-left img {
  width: 48px;
  height: 48px;
  display: block;
}

.hero-container {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
  min-height: 100vh;
  margin-left: 120px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 3.5em;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 1.45em;
  margin-bottom: 28px;
  color: #ddd;
}

.hero-text .btn {
  padding: 16px 35px;
  font-size: 1.25em;
  font-weight: bold;
  color: #111;
  background: #fff;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: none;
}

.hero img {
  max-width: 500px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .hero-container {
    margin-left: 0;
    padding: 0 20px;
  }
  .hero {
    flex-direction: column;
    align-items: center;
  }
  .hero-text {
    max-width: 80%;
    text-align: center;
  }
  .hero img {
    margin-top: 30px;
    max-width: 80%;
  }
}


