body {
  margin: 0;
  font-family: Arial;
  color: white;
  overflow-x: hidden;
}

/* VIDEO */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* KARARTMA */
body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  z-index: -1;
}

/* NAV */
.nav {
  padding: 20px;
}

/* HERO */
.hero {
  text-align: center;
  margin-top: 100px;
}

.glow {
  font-size: 70px;
  color: #00ffcc;
  text-shadow: 0 0 25px #00ffcc;
}

.buttons a {
  margin: 10px;
  padding: 15px 25px;
  background: #00ffcc;
  color: black;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.buttons a:hover {
  transform: scale(1.1);
}

/* SECTION */
.section {
  text-align: center;
  padding: 60px 20px;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.box {
  background: rgba(255,255,255,0.1);
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
}

/* COMMANDS */
.cmd {
  background: #111;
  margin: 10px auto;
  padding: 10px;
  width: 70%;
  border-radius: 8px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
}