@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:not(i) {
  font-family: "Poppins", sans-serif;
}

*:focus{
    outline: none;
}

html {
  scroll-behavior: smooth;
  background-color: white;
}

.body {
  width: 100%;
  overflow-x: hidden;
}

.genContainer {
  width: 100%;
  min-height: 100vh;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-x: hidden;
}

.divider {
  width: 100%;
  height: 30px;
  background-color: #1b1b1b;
  background-image: url("../img/kodexafricaLogo.png");
  background-size: 50px;
}

a,
button {
  text-wrap: nowrap;
  word-wrap: normal;
}

.scroll {
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ddd;
  background-color: #E68815;
  font-size: 1.4rem;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.scroll:hover {
  background-color: #1b1b1b;
}
@media screen and (max-width: 767px) {
  .scroll {
    right: 1.5rem;
    bottom: 1.8rem;
  }
}