html {
  height: 100%;
}
* {
  padding: 0%;
  margin: 0%;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #ffffff;
  min-height: 100vh;
}
.navbar {
  background-color: #000000;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#logo {
  margin: 0px 50px;
  padding: 5px 25px;
}
#logo h1 {
  font-size: 1.7rem;
  font-weight: 200;
  text-transform: uppercase;
  color: #892cdc;
  font-family: "Francois One", sans-serif;
}

#nav-items {
  padding: 5px 10px;
  margin-right: 50px;
}

#nav-items a {
  text-decoration: none;
  color: #bc6ff1;
  margin: 0px 25px;
}

#nav-items a:hover,
.active {
  border-bottom: 2px solid #ffffff;
  border-radius: 5%;
}

.hamburgur-menu {
  display: none;
}

.section {
  max-width: 65%;
  margin: auto;
  margin-top: 34px;
  padding: 10px;
}
.section h1 {
  border-bottom: 2px solid #892cdc;
  font-size: 2.5rem;
  font-weight: 200;
  text-transform: uppercase;
  color: #892cdc;
  font-family: "Francois One", sans-serif;
}
.section p {
  margin: 15px 0px;
  color: #b85bf7;
  text-align: justify;
}
.section li {
  display: list-item;
  margin: 15px 25px;
  color: #b85bf7;
  text-align: left;
}
footer {
  position: sticky;
  clear: both;
  top: 100%;
  width: 100%;
  height: 12%;
  background-color: #000000;
  color: #b85bf7;
  text-align: center;
}
.social {
  display: flex;
  justify-content: center;
  margin: 3px 0px;
}
.social img {
  height: 30px;
  margin: 2px 5px;
  transform: translateY(16%);
}

.social img:hover {
  height: 32px;
}

.copyright {
  position: relative;
  bottom: 0%;
}

/*---------Mobile View----------------*/

@media only screen and (max-width: 500px) {

  .navbar {
    padding: 0px;
    justify-content: space-between;
  }
  #logo {
    margin: 0px;
    padding: 10px;
    display: block;
  }
  #logo h1 {
    font-size: 1.4rem;
    font-weight: 200;
  }
  .navitems, .logo-invisible , .logo-invisible h1 {
    display: none;
  }
  #nav-items a:hover, #nav-items .active{
  color:#ffffff;
  border:none;
}
  .responsive , .responsive a{
    display: block;
    border: none;
    width:100%;
    padding: 14px 16px;
    font-size: 17px;
  }
   .hamburgur-menu {
    display: block;
    margin: 15px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .hamburgur-menu a {
    text-decoration: none;
    color: #892cdc;
  }
  .fa {
    font-size: larger;
  }
  .section{
    max-width: 80%;
  }
  .section h1{
    font-size: 2rem;
    text-align: center;
  }
  .section h2{
    font-size: 1rem;
  }
  .section p, .section li{
    text-align:center;
    font-size: 0.9rem;
  }
}
