/*
  font-family: 'Playfair Display', serif;
  font-family: 'Lato', sans-serif;
*/
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans');
*{
  padding: 0;
  margin: 0;
}
body{
  transition: 0.5s;
}
#nav-bar{
  height: 6vh;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-align: center;
  position: absolute;
  padding: 0;
  padding-right: 0px;
  top: 0vh;
  width: 100%;
  left:0%;
  z-index: 3;
  display: flex;
}

.link{
  width: 25%;
  position: relative;
  top: 0vh;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  transition: 0.25s;
}

.particle{
  position: absolute !important;
  border-radius: 50%;
}
@keyframes animParticle {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(100vh);
  }
}

.container{
  background: transparent;
  width: 100%;
  position: absolute;
  height: 100vh;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -100;
}


.copyright{
  position: relative;
  text-align: center;
  padding-bottom: 2vh;
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 85%;
}
/*
laggy ass cursor effect
#circle{
  position:absolute;
  transform:translate(-50%,-50%);
  height:35px;
  width:35px;
  border-radius:50%;
  background: rgba(0,0,0,0.5);
}
*/

/*disable scrollbar*/
/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
/*End Cursor Fix*/

.logo{
  height: 4.5vh;
  width: 4.5vh;
  top: 0.75vh;
  position: relative;
/*   top: 0.25vh; */
  z-index: 30;
}

.link-down{
  position: relative;
  top: 1.75vh;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
footer{
    margin-top: auto;
    z-index:40;
}

.error404{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 49vh;
  font-family:"Nunito Sans";
}
h1.error404{
	font-size: 7.5em;
  margin: 15px 0px;
  font-weight:bold;
}

h2.error404{
	font-weight:bold;
}



/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 50; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 0px;
  width: 80%;
  height: 80%;
  overflow: scroll;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
  z-index: 51;
  font-family: 'Lato', sans-serif;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background: rgba(30,30,30,1);
  color: white;
  border-bottom: 3px solid rgba(255,255,255,0.2);
  padding: 20px 10px;
  text-align: center;
}

.modal-body {
  padding: 2px 16px;
  background: #000;
  color: white;
  border-bottom: 3px solid rgba(255,255,255,0.2);
  border-left: 3px solid rgba(255,255,255,0.2);
  border-right: 3px solid rgba(255,255,255,0.2);
  line-height: 1.8;
}






/*Light Dark Theme CSS*/
@media (prefers-color-scheme: dark) {
  body{
    background: #000000;
  }
  .copyright{
    color: white;
  }
  .copy-link{
    color: white;
  }
  .particle{
    background: #fff;
  }
  #nav-bar{
    border: 0px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(100,100,100,0.2);
  }
  .link{
    color: white;
  }
  .link:hover{
  color: #848484;
  } 
    a{
    color: white;
  }
}

@media (prefers-color-scheme: light) {
  body{
    background: #fff;
  }
  .copy-link{
    color: black;
  }
  .copyright{
    color: black;
  }
  .particle{
    background: #000;
  }
  #nav-bar{
    border: 0px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.3);
  }
  .link{
    color: black;
  }
  .link:hover{
  color: #848484;
  } 
    a{
    color: black;
  }
}