@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.root{
  --background-color: #ffffff;
  --underline-color: #792020;
  --text-color: #000000;
}

*{
  padding: 0;
  margin: 0;
  
}

h1{
  font-family: "Barlow Semi Condensed";
  color: #000000;
  font-size: 60px;
  letter-spacing: 0.3rem;
  
}

h2{
  font-family: "Barlow Semi Condensed";
  font-weight: 500;
  color: #792020;
  font-size: 40px;
}


p{
  font-family: "Open Sans", sans-serif;
  color: #000000;
  font-size: 20px;
}


body{
  background-color: #ffffff;
}

.background_logo{
  position: fixed;
  top: 13%;
  height: 100%;
  z-index: -1;
}

.background_logo img{
  height: 80vh;
  
}



#loader_bg{
  background-color: #ffffff;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 80;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 100;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #000000;
  border-radius: 50%;
  border-top: 16px solid #792020;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}