* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    background-color: #c3c2c2;
    background-size: cover;
    height: 100vh;
  
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
  }
  
  ul {
    list-style: none;
  }
  
  nav {
    height: 40px;
    margin: 40px auto;
    background-color: #1e1e1e;
    text-align: center;
    border-radius: 4px;
  }
  .main {
    display: flex;
    justify-content: center;
  }
  .main > li {
    margin: 0 2%;
  }
  .main > li a{
    border-left:0.5px solid rgba(23, 23, 50, 1);
  }
  a {
    text-decoration: none;
    color: #ffe;
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    transition: background-color 0.5s ease-in-out;
    font-family: "Raleway", sans-serif;
  }
  
  a:hover {
    color: black;
    background-color: #bcff36;
  }

  .atextlink {
    text-decoration: none;
    color: #bcff36;
    display: inline;
    padding: 0px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.5s ease-in-out;
    font-family: "Raleway", sans-serif;
  }
  
  .atextlink:hover {
    color: black;
    background-color: #bcff36;
  }

/*
  img:hover {
    color: black;
    background-color: #bcff36;
  }
*/
  
  .drop li {
    opacity: 0;
    transform-origin: top center;
  }
  
  .drop li a {
    background-color: rgba(23, 23, 50, 0.7);
    padding: 10px 0;
    color: #bcff36;
  }

  .drop li a:hover {
    background-color: #bcff36;
    padding: 10px 0;
    color: rgba(23, 23, 50, 0.7);
  }


  /*------------- menu1 animation -------------------*/
  
  .main li:hover .menu1 li:first-of-type {
    animation: menu1 0.3s ease-in-out forwards;
    animation-delay: 0.3s;
  }
  
  .main li:hover .menu1 li:nth-of-type(2) {
    animation: menu1 0.3s ease-in-out forwards;
    animation-delay: 0.6s;
  }
  
  .main li:hover .menu1 li:nth-of-type(3) {
    animation: menu1 0.3s ease-in-out forwards;
    animation-delay: 0.9s;
  }
  
  .main li:hover .menu1 li:last-of-type {
    animation: menu1 0.3s ease-in-out forwards;
    animation-delay: 1.2s;
  }
  
  @keyframes menu1 {
    from {
      opacity: 0;
      transform: translateX(30px) rotateY(90deg);
    }
    to {
      opacity: 1;
      transform: translateX(0) rotateY(0);
    }
  }
  
  /*------------- menu2 animation -------------------*/
  
  .main li:hover .menu2 li:first-of-type {
    animation: menu2 0.3s ease-in-out forwards;
    animation-delay: 0.3s;
  }
  
  .main li:hover .menu2 li:nth-of-type(2) {
    animation: menu2 0.3s ease-in-out forwards;
    animation-delay: 0.6s;
  }
  
  .main li:hover .menu2 li:nth-of-type(3) {
    animation: menu2 0.3s ease-in-out forwards;
    animation-delay: 0.9s;
  }
  
  .main li:hover .menu2 li:last-of-type {
    animation: menu2 0.3s ease-in-out forwards;
    animation-delay: 1.2s;
  }
  
  @keyframes menu2 {
    0% {
      opacity: 0;
      transform: scale(0.7);
    }
    50% {
      opacity: 0.5;
      transform: scale(1.1);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /*------------- menu3 animation -------------------*/
  
  .main li:hover .menu3 li:first-of-type {
    animation: menu3 0.3s ease-in-out forwards;
    animation-delay: 0.3s;
  }
  
  .main li:hover .menu3 li:nth-of-type(2) {
    animation: menu3 0.3s ease-in-out forwards;
    animation-delay: 0.6s;
  }
  
  .main li:hover .menu3 li:nth-of-type(3) {
    animation: menu3 0.3s ease-in-out forwards;
    animation-delay: 0.9s;
  }
  
  .main li:hover .menu3 li:last-of-type {
    animation: menu3 0.3s ease-in-out forwards;
    animation-delay: 1.2s;
  }
  
  @keyframes menu3 {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /*------------- menu4 animation -------------------*/
  
  .main li:hover .menu4 li:first-of-type {
    animation: menu4 0.3s ease-in-out forwards;
    animation-delay: 0.1s;
  }
  
  .main li:hover .menu4 li:nth-of-type(2) {
    animation: menu4 0.3s ease-in-out forwards;
    animation-delay: 0.2s;
  }
  
  .main li:hover .menu4 li:nth-of-type(3) {
    animation: menu4 0.3s ease-in-out forwards;
    animation-delay: 0.3s;
  }
  
  .main li:hover .menu4 li:nth-of-type(4) {
    animation: menu4 0.3s ease-in-out forwards;
    animation-delay: 0.4s;
  }

  .main li:hover .menu4 li:last-of-type {
    animation: menu4 0.3s ease-in-out forwards;
    animation-delay: 0.4s;
  }
  
  @keyframes menu4 {
    0% {
      opacity: 0;
      transform: translateX(50px) rotate(-90deg);
    }
    100% {
      opacity: 1;
      transform: translateX(0) rotate(0);
    }
  }
  
  /*------------- menu5 animation -------------------*/
  
  .main li:hover .menu5 li:first-of-type {
    animation: menu5 0.3s ease-in-out forwards;
    animation-delay: 0.3s;
  }
  
  .main li:hover .menu5 li:nth-of-type(2) {
    animation: menu5 0.3s ease-in-out forwards;
    animation-delay: 0.6s;
  }
  
  .main li:hover .menu5 li:nth-of-type(3) {
    animation: menu5 0.3s ease-in-out forwards;
    animation-delay: 0.9s;
  }
  
  .main li:hover .menu5 li:last-of-type {
    animation: menu5 0.3s ease-in-out forwards;
    animation-delay: 1.2s;
  }
  
  @keyframes menu5 {
    0% {
      opacity: 0;
      transform: rotateX(-90deg);
    }
    100% {
      opacity: 1;
      transform: rotateX(0);
    }
  }
  
  /*------------- menu6 animation -------------------*/
  
  .main li:hover .menu6 li:first-of-type {
    animation: menu6 0.3s ease-in-out forwards;
    animation-delay: 0.2s;
  }
  
  .main li:hover .menu6 li:nth-of-type(2) {
    animation: menu6 0.3s ease-in-out forwards;
    animation-delay: 0.4s;
  }
  
  .main li:hover .menu6 li:nth-of-type(3) {
    animation: menu6 0.3s ease-in-out forwards;
    animation-delay: 0.6s;
  }
  
  .main li:hover .menu6 li:last-of-type {
    animation: menu6 0.3s ease-in-out forwards;
    animation-delay: 0.8s;
  }
  
  @keyframes menu6 {
    0% {
      opacity: 0;
      transform: scale(2);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* my button style */
  .white-mode {
    text-decoration: none;
    padding: 7px 10px;
    background-color: #122;
    border-radius: 3px;
    color: #fff;
    transition: 0.35s ease-in-out;
    position: absolute;
    left: 15px;
    bottom: 15px;
    font-family: sans-serif;
  }
  
  .white-mode:hover {
    background-color: #fff;
    color: #122;
  }

  .paragraph {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: large;
    text-align: justify;
    margin-left: 400px;
    margin-right: 400px;
    margin-bottom: 100px;
  }

  h1.logo {
    text-align: center;
    color: #bcff36;
    padding-top: 20px;
  }

  h1.title {
    text-align: center;
    font-family: Bamf2font;
    font-size: 60px;
    color: #bcff36;
    padding-top: 107px;
    padding-right: 169px;
  }

  @font-face {
    font-family: Bamf2font;
    src: url(bamf2.ttf);
  }
  
  h3{
    padding-left: 50px;
    padding-top: 0px;
  }

  .code {
    text-align: left;
    font-family: monospace;
    font-size: larger;
    padding-left: 100px;
  }

  p {
    padding-top: 10px;
    padding-bottom: 50px;
  }

  ul.list {
    list-style: circle;
  }

  .image {
    text-align: center;
    padding-bottom: 50px;
  }


  .navfooter {
    height: 60px;
    margin: 40px auto;
    margin-bottom: 0px;
    background-color: #525050;
    text-align: center;
    border-radius: 0px;
    color: cornsilk;
  }
  
  .mainfooter {
    display: flex;
    justify-content: center;
  }
  .mainfooter > li {
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 20px;
    margin-right: 0px;
    text-align: center;
  }
  .mainfooter > li a{
    border-left:0.5px solid rgba(23, 23, 50, 1);
  }

  .black {
    color: black;
  }

/* START SETTINGS TABLE STYLES */
#settingstable {
  width: 400px;
  table-layout: fixed;
  text-align: center;
  margin: 30m 0;
  border-collapse: collapse;
}

#settingstable tr {
  background: transparent!important;
}

#settingstable td{
  font-size: 16px;
  padding: 5px;
  text-align: left;
}

#settingstable th {
  padding: 5px;
  text-align: center;
}

#settingstable td.rowTitle {
  text-align: right;
  background-color: #9e9b9b;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  text-shadow: 0 2px 0 #918f8f;
  border: 1px solid #000000;
  width: 400px;
}

.blank {
  background: none!important;
  border: none!important;
}

.clean th {
  background-color: #9e9b9b;
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  text-align: center;
  text-shadow: 0 2px 0 #918f8f;
  border: 1px solid #000000;
}

.clean td {
  background-color: rgb(168, 165, 165);
  border: 1px solid #000000;
}

.clean td.rowTitle {
  font-size: 12px;
  font-weight: 400;
}
.signupform td {
 padding-bottom: 10px;
}
/* END SETTINGS TABLE STYLES */


/* START COMPARISON TABLE STYLES */
#comparetable {
  width: 200; 
  table-layout: fixed; 
  text-align: center; 
  margin: 30m 0; 
  border-collapse: collapse; 
}

#comparetable tr {
  background: transparent!important;
}

#comparetable td{
  font-size: 16px;
  padding: 5px; 
  text-align: center;
}

#comparetable th {
  padding: 5px; 
  text-align: center;
}

#comparetable td.rowTitle {
  text-align: center;
  background-color: #9e9b9b; 
  font-size: 16px;
  font-weight: bold;
  color: #000000; 
  text-shadow: 0 2px 0 #918f8f; 
  border: 1px solid #000000;
}

.blank {
  background: none!important; 
  border: none!important;
}

.clean th {
  background-color: #9e9b9b; 
  font-size: 20px;
  font-weight: bold;
  color: #000000; 
  text-align: center; 
  text-shadow: 0 2px 0 #918f8f; 
  border: 1px solid #000000;
}

.clean td {
  background-color: rgb(168, 165, 165); 
  border: 1px solid #000000;
}

.clean td.rowTitle {
  font-size: 12px; 
  font-weight: 400;
}
.signupform td {
 padding-bottom: 10px;
}
/* END COMPARISON TABLE STYLES */

.form {
  text-align: left;
  margin-left: 200px;
  font-weight: bold;
}

.flat {
	border: 1px solid #888888;
  height: 35px;
}

.buttonlogin {
	border: 1px solid #aaaaaa;
	color: #000000;
	background: #dddddd;
  padding: 10px;
  font-size: 13px;
  margin-left: 64px;
  font-weight: bold;
}

.buttonlogin:hover, .button:focus {
	background: #bcff36;
	color: rgb(14, 32, 1);
	text-decoration: none;
}

.buttonsignup {
	border: 1px solid #aaaaaa;
	color: #000000;
	background: #dddddd;
  padding: 10px;
  font-size: 13px;
  margin-left: 218px;
  font-weight: bold;
}

.buttonsignup:hover, .buttonsignup:focus {
	background: #bcff36;
	color: rgb(14, 32, 1);
  text-decoration: none;
}

.smalltext{
  font-size: smaller;
}

.flash {
  padding: 10px;
  background-color: #f44336;
  color: white;
  margin-bottom: 15px;
}


/* START USER CP TABLE STYLES */
#usercptable {
  width: 900px;
  table-layout: fixed;
  text-align: left;
  margin: 30m 0;
  border-collapse: collapse;
}

#usercptable tr {
  background: transparent!important;
}

#usercptable td{
  font-size: 16px;
  padding: 10px;
  text-align: left;
}

#usercptable th {
  padding: 5px;
  text-align: left;
}

#usercptable td.rowTitle {
  text-align: left;
  background-color: #9e9b9b;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  text-shadow: 0 2px 0 #918f8f;
  border: 1px solid #000000;
}

.credits {
  font-size: 10px;
  font-style: italic;
  font-weight: normal;
}


/* END USER CP TABLE STYLES */
