@font-face {
  font-family: Lato;
  src: url(https://cdn.mcalec.dev/fonts/lato/regular.ttf);
}
@font-face {
  font-family: LatoBold;
  src: url(https://cdn.mcalec.dev/fonts/lato/bold.ttf);
}
@font-face {
  font-family: LatoItalic;
  src: url(https://cdn.mcalec.dev/fonts/lato/regular-italic.ttf);
}
  

@font-face {
  font-family: Poppins;
  src: url(https://cdn.mcalec.dev/fonts/poppins/regular.ttf);
}
@font-face {
  font-family: PoppinsBold;
  src: url(https://cdn.mcalec.dev/fonts/poppins/bold.ttf);
}
  

/* Main */
  
*{
  box-sizing: border-box;
}
  
  
  
.navbar {
  text-align: center;
  color: transparent;
  font-family: Lato;
  margin: auto;
  padding: 0px 0px 0px 0px;
  
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  li {
    display: inline;
    float: right;
  }
  
  li a {
    display: block;
    color: gray;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover:not(.active) {
    color: gray;
    font-family: LatoBold;
  }
  
  li a:active {
    background-color: black;
    color: white;
  }
 
  .active {
    color: white;
    font-family: LatoBold;
    background-color: transparent;

  }
  
}


.leftnavbar {
  text-align: center;
  color: transparent;
  font-family: Lato;
  margin: auto;
  padding: 0px 0px 0px 0px;
  
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  li {
    display: inline;
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
  }
  
}
  
  
  
.maincontent {
  background-color: #1c1c1c;
  background-repeat: repeat;
  background-attachment: scroll;
  background-position: center;
  
  text-align: center;
  color: black;
  font-family: Lato;
  padding-top: 35vw;
  padding-bottom: 35vw;
  margin: auto;
}
  
.footer {
  background-color: #1c1c1c;
  text-align: center;
  color: white;
  font-family: Lato;
  padding-top: 12px;
  padding-bottom: 30px;
  margin: auto;
  text-decoration: none;
  font-size: medium;

  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: transparent;
  }
  
  li a {
    color: white;
    text-align: center;
    text-decoration: none;
  }
   
  li {
    display: inline;
  }
}
  
  
/* Titles */
h1 {
  color: white;
  text-align: center;
  font-family: LatoBold;
  font-size: x-large;
}
  
  
button {
  font-family: LatoBold;
  text-align: center;
  height: 50px;
  width: 200px;
  background-color: White;
  border-radius: 150px;
  border: 4px solid Black;
}
 
html, body {
  margin: 0px;
  margin-top: 0px;
  padding-top: 0px;
}
 
button:hover {
  font-family: LatoBold;
  color: White;
  background-color: Black;
  cursor: pointer;
  border-radius: 150px;
  border: 4px solid White;
}
  
  
.loader {
  border: 18px solid white;
  border-top: 18px solid black;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  animation: spin 0.00001s linear infinite;
}
 
b {
  font-family: LatoBold;
}

i {
  font-family: LatoItalic;
}