* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'timeBurner';
  src: url('../fonts/timeburner_regular.ttf') format('truetype');
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f7f2ef;
}

.section-title {
  color: #ec1f26;
  font-size: 32px;
  text-transform: capitalize;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Montserrat", serif;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 42px;
  }
}

@media (min-width: 1440px) {
  .section-title {
    font-size: 52px;
  }
}

@keyframes moveSlideshow {
  100% { 
    transform: translateX(-500px);
  }
}