

.navbar {
    background-color: white;
    border: none;
    border-radius: 20px;
    margin: 20px;
}

.navbar-brand {
    margin-left: 20px;
    margin-right: 20px;
    font-family: "Roboto Mono", serif;
}
.nav-item {
    font-weight: lighter;
    text-align: left;
    margin-left: 30px;
    margin-right: 30px;
    font-family: "Fuzzy Bubbles", serif;
    opacity: 50%;
}

.main-container {
  display: flex;
  justify-content: center;
}
  
.heading-container {
  display: flex;
  justify-content: center;
  font-family: "Roboto Mono", serif;
  margin-left: 20px;
  margin-right: 20px;
}

.heading-container h1 {
  font-size: 22px;

  font-weight: normal;
  color: #453F3C;
  color: #54504E;
  text-shadow: 1px 1px #aea8a8;
}

.info-container {
  display: flex;
  justify-content: center;
  font-family: "Fuzzy Bubbles", serif;
  font-weight: 400;
  font-style: normal;
}


svg {
  width: 200px;
  height: 200px;
}
  
  /* SMOKE */
  #smoke-1 {
    stroke-dasharray: 0, 10;
    animation: smoke 6s ease infinite;
  }
  
  #smoke-2 {
    stroke-dasharray: 0, 10;
    animation: smoke 6s 0.5s ease infinite;
  }
  
  @keyframes smoke {
    0% { stroke-dasharray: 0, 10; }
    50% { stroke-dasharray: 10, 0; }
    100% { stroke-dasharray: 10, 0; opacity: 0; }
  }
  
  /* WRITING */
  #line-1 {
    opacity: 0;
    animation: writing 0.5s linear forwards;
  }
  
  #line-2 {
    opacity: 0;
    animation: writing 0.5s 1s linear forwards;
  }
  
  #line-3 {
    opacity: 0;
    animation: writing 0.5s 1.5s linear forwards;
  }
  
  #line-4 {
    opacity: 0;
    animation: writing 0.5s 2s linear forwards;
  }
  
  @keyframes writing {
    0% { width: 0px; opacity: 1;}
    100% { width: 14px; opacity: 1;}
  }
  
  

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #F78764; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 10px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  opacity: 50%;
  border-radius: 50px;
}

#myBtn:hover {
  background-color: #54504E; /* Add a dark-grey background on hover */
}




/*  */


.slide-img {
  width: 50px;
  height: 50px;
  animation: scroll 60s linear infinite;
  opacity: 80%;
}

.slide-track {
  width: 100%;
  display: flex;
  gap: 2em;
  overflow: hidden;
  border-radius: 10px;
}

.slider {
  margin-top: 0px;
  background-color: white;
  padding: 2em 2em;
}

@keyframes scroll {
  100% {transform: translateX(0);}
  50% {transform: translatex(-3100%)}
  100% {transform: translateX(0);}
  50% {transform: translatex(-3100%)}
}


