body {
  font-family: "dosis", sans-serif;
  background: linear-gradient(
    to bottom,
    rgba(185, 209, 238, 0.973),
    rgb(180, 235, 180),
    rgb(248, 250, 248)
  );
  margin: 0;
}

.back-img {
  background-image: url(comp.png);
  opacity: 0.5;
  position: absolute;
  width: 99.7%;
  height: 700px;
  border-radius: 5px;
  position: relative;
}

.navbar {
  position: sticky;
  margin-top: 0;
  display: flex;
  background:black;
  width: 100%;
  justify-content: space-evenly;
  border-radius: 9px;
}

.item {
  font-family: "dosis", sans-serif;
  color: rgb(255, 255, 255);
  margin: 10px;
  font-size: larger;
  text-decoration: none;
  border: 0;
  background-color: inherit;
}

.item:hover {
  border: 1px solid rgb(89, 213, 235);
  border-radius: 5px;
  padding: 5px;
  background: rgba(109, 229, 245, 0.8);
}

.dd-item {
  text-decoration: none;
  color: white;
  display: block;
  border: 2px solid inherit;
  border-radius: 7px;
  padding: 5px;
  font-size: 20px;
  transition: 0.5s;
  text-align: center;
  background: rgb(109, 229, 245);
}

.subnav button:hover {
  cursor: pointer;
}

.dropdown {
  display: none;
}
.subnav:hover > .dropdown {
  display: block;
  cursor: pointer;
}

.dd-item:hover {
  transform: scale(1.2);
  background: rgb(238, 238, 238);
}

.lang-img-cont {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.lang-img {
  width: 100%;
  height: 100%;
  transform: scale(2);
  transition: 1s;
}

.img-1 {
  margin: 10%;
  width: 70%;
  overflow: hidden;
  height: 600px;
  border-radius: 10px;
  background: black;
  transition: 1s;
  box-shadow: 20px 20px 8px rgb(135, 231, 147);
}

.lang-img:hover {
  transform: scale(1);
}

.img-1:hover {
  box-shadow: 30px 30px 10px rgb(157, 157, 233);
}

.footer {
  background: linear-gradient(to right, rgb(121, 221, 121), rgb(144, 177, 221));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  height: 200px;
  align-items: center;
  color: white;
}

.footer-item {
  border: 3px solid rgb(145, 212, 235);
  padding: 10px;
  border-radius: 8px;
  border-top: 0;
  border-left: 0;
  transition: 0.5s;
}

.footer-item:hover {
  transform: scale(1.2);
}

.footer span:hover {
  color: rgb(104, 104, 241);
}
