@import url(./font.css);
@import url(./section-title.css);


::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: #434343;
  color: #5a8ead;
}



*{
  scroll-behavior: smooth;
}

.btn{
  font-family: "Berlin";
  border-radius: 10px;
  padding: 10px 24px 12px 24px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  width: fit-content;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
.btn-white {
  color: #4e5097;
  background: #fafafa;
  border: #4e5097 2px solid;
}
.btn-white:hover {
  background: #4e5097;
  color: #f5f5f5;
  border-color: #fafafa;
}
.btn-purple {
  color: #f5f5f5;
  background: #4e5097;
  border: #4e5097 2px solid;

}
.btn-purple:hover{
  color: #4e5097;
  background: #fafafa;
}


.animation-scale{
  animation: animation-header 25s ease-in-out infinite alternate;
}
@keyframes animation-header {
  0% {
    transform: scale(1.0);
}
100% {
    transform: scale(1.1);
}
}
