body {
  background: black;
  background-image: url("../img/bbblurry.svg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.cube {
  position: absolute;
  bottom: 0;
  left: 0;
}

.container-h1 {
  padding-top: 10vh;
  padding-left: 20vw;
  padding-right: 20vw;
  overflow-wrap: break-word;
  margin-bottom: 20px;
}

.container-h2 {
  padding-top: 10px;
  padding-left: 28vw;
  padding-right: 28vw;
  overflow-wrap: break-word;
}

#projectname {
  text-align: center;
  font-family: Inter;
  font-size: 49px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-family: "Inter", sans-serif;
  color: #b300ff;
  background-image: -webkit-linear-gradient(270deg,
      #4e1eeb 0%,
      #b113eb 33%,
      #ff00aa 67%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

p {
  padding-top: 20px;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Inter", sans-serif;
  color: white;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #33367f;
  color: #fff;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
}

/* LOGO */
.logo {}

/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  font-size: 18px;
}

.menu li:hover {
  background-color: #33367f;
  border-radius: 5px;
  transition: 0.3s ease;
}

.menu li {
  padding: 5px 14px;
  list-style: none;
}

/* DROPDOWN MENU */
.services {
  position: relative;
}

.dropdown {
  background-color: rgb(1, 139, 139);
  padding: 1em 0;
  position: absolute;
  /*WITH RESPECT TO PARENT*/
  display: none;
  border-radius: 8px;
  top: 35px;
}

.dropdown li+li {
  margin-top: 10px;
}

.dropdown li {
  padding: 0.5em 1em;
  width: 8em;
  text-align: center;
}

.dropdown li:hover {
  background-color: #33367f;
}

.services:hover .dropdown {
  display: block;
}

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

/* RESPONSIVE NAVBAR MENU STARTS */

/* CHECKBOX HACK */

input[type="checkbox"] {
  display: none;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    background-color: #33367f;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
  }

  .menu li:hover {
    display: inline-block;
    background-color: #33367f;
    transition: 0.3s ease;
  }

  .menu li+li {
    margin-top: 12px;
  }

  input[type="checkbox"]:checked~.menu {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
  }

  .dropdown li:hover {
    background-color: #33367f;
  }
}

button {
  margin-top: 40px;
  background-color: #7e1d96;
  border-radius: 16px;
  border: none;
  color: white;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

#main-generator{
  width: 80%;  
  margin-top: 40px;
  padding: 20px;
}

#getARandomName {
  background-color: #33367f;
  padding: 10px;
  color: white;
  font-size: 35px;
}

#getARandomDescription {
  background-color: #33367f;
  color: white;
  font-size: 20px;
  border-radius: 8 px;
  padding: 10px;
}

#generator {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 18px;
  background-color: #7E1D96;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
