/* Footer Styling */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;

}

.para-text
{
  font-size: 2vw;
  padding: 0.5rem;
  font-family: 'Times New Roman', Times, serif;
}

.FtextContainer
{
  display: flex;
  justify-content: center;
  align-items: center;
}
.FText
{
  margin-left: 0.9rem;
}

.FText {
  display: inline-block;
  border-right: 5px solid;
  white-space: nowrap;
  overflow: hidden;
  /* border: 1px solid; */
  /* width: 50%; Can be 100% or another percentage */
  animation: typing 2s steps(30, end), cursor 0.7s step-end infinite; /* Typing animation */
}

@keyframes cursor {
  50% {
    border-color: transparent;
  }
}
@keyframes cursor {
  50% {
    border-color: transparent;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 50%;
  }
}


/* githubbbbbbbbbbbbbbbbbbb */


/* From Uiverse.io by vinodjangid07 */ 

/* From Uiverse.io by aadium */ 
.social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color:#FFF8E8; */
  /* box-shadow: 0px 0px 15px #00000027; */
  padding: 1.5rem;
  
}

.social-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 10px;
  background-color: #fff;
  box-shadow: 0px 0px 4px #00000027;
  transition: 0.3s;
}

.social-button:hover {
  background-color: #f2f2f2;
  box-shadow: 0px 0px 6px 3px #00000027;
}

.social-buttons svg {
  transition: 0.3s;
  height: 20px;
}

.facebook {
  background-color: #3b5998;
}

.facebook svg {
  fill: #f2f2f2;
}

.facebook:hover svg {
  fill: #3b5998;
}

.github {
  background-color: #333;
}

.github svg {
  width: 25px;
  height: 25px;
  fill: #f2f2f2;
}

.github:hover svg {
  fill: #333;
}

.linkedin {
  background-color: #0077b5;
}

.linkedin svg {
  fill: #f2f2f2;
}

.linkedin:hover svg {
  fill: #0077b5;
}

.instagram {
  background-color: #c13584;
}

.instagram svg {
  fill: #f2f2f2;
}

.instagram:hover svg {
  fill: #c13584;
}



.privacy-container
{
  font-family: 'Times New Roman', Times, serif;
  color: #FFF8E8;
  font-size: 1.3vw;

}