@import url('https://fonts.cdnfonts.com/css/avenir');


body {
    background: #010409;
    color: white;
    margin: 0;
    padding: 0;
    font-family: 'Avenir', sans-serif;
}
nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 25px;
    position: relative;
    z-index: 1000;
}
nav a {
    text-decoration: none;
    color: white;
    margin: 25px;
    font-size: 20px;
}
nav a:hover {
    color: #adadad;
}
.navbg {
    background: #491772;
    filter: drop-shadow(0px 0px 5px #5a079e);
    text-align: center;
    width: 40%;
    padding: 25px;
    border-radius: 50px;
}
nav i {
    margin-right: 10px;
}
main {
    text-align: center;
    position: relative;
    z-index: 1000;
}
main h1 {
    margin-top: 100px;
}






.wrapper-box {
    background: #0d1117;
    width: 90%;
    height: 90%;
    border-radius: 24px;
    margin: 0 auto;
}
.inside-box-wrapper {
    justify-content: center;
    flex-direction: row;
    display: flex;
    align-items: center;
}
.inside-box {
    flex-direction: row;
    background: #0c0f14;
    width: 450px;
    height: 450px;
    margin: 25px;
    border-radius: 24px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.inside-box:hover {
    border-radius: 50px;
    width: 500px;
    height: 500px;
}


.inside-box-text {
    color: white;
    text-decoration: none;
}



/* Make a line*/
.line {
    width: 90%;
    margin: 0 auto;
    margin-top: 0px;
    height: 3px;
    border-radius: 15px;
    background: #34445c;
}








/* Footer Item */
.footer-item {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    padding-bottom: 5px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background: #0d1117;
    filter: drop-shadow(0px 0px 5px #0d1117);
}

.mobile-display {display: none}
.desktop-display {display: block}

@media (min-width: 1000px) {
    .desktop-display {display: none}
    .mobile-display {display: block}
}
@media screen and (max-width: 700px) {
    .navbg {
        width: 100%;
        font-size: 5px;
    }
    .navbg a {
        margin: 20px;
        font-size: 20px;
    }
    main img {
        width: 50%;
    }
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #e17cfd;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 8px;
  }

  *::-webkit-scrollbar-track {
    background: #010409;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #691699;
    border-radius: 10px;
  }
  .background {
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: 0;
  }


/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #491772;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: rgba(88, 88, 88, 0.568);
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: rgba(88, 88, 88, 0.568);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

a:link { text-decoration: none; color: white; }


a:visited { text-decoration: none; color: white; }


a:hover { text-decoration: none; color: white; }


a:active { text-decoration: none; color: white; }