body {
  font-family: 'Roboto';
}

.loader {
  height: 100vh;
  background-color: black;
  color: white;
  position: fixed;
  top: 0;
  z-index: 100;
}

.loader-text {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeInAnimation ease 5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards; 
  font-size: 20pt;
  letter-spacing: 5px;
}

@keyframes fadeInAnimation { 
  0% { 
      opacity: 0; 
  } 
  100% { 
      opacity: 1; 
   } 
} 

.top-section {
  background-image: url("images/recipes_bg.jpg");
  background-position: center;
  background-size: cover;
  min-height: 600px;
  height: 100vh;
  position: relative;
}

.top-text {
  min-height: 600px;
}

.top-text h1 {
  margin-top: 200px;
  padding: 20px;
  background-color: #0d0d0d;
  color: white;
  display: inline-block;
}

.top-text h2 {
  margin-top: 50px;
  padding: 20px;
  background-color: #0d0d0d;
  color: #b3b3b3;
}

.top-text h2 .typer {
  color: white;
}

.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.dark {
  background-color: #0d0d0d;
  color: white;
}

.footer {
  text-align: center;
}