* {
  margin: 0;
  padding: 0;
  transition: 0.75s;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Akshar';
  src: url('/assets/fonts/Akshar-Regular.ttf') format('truetype');
}
body {
  font-family: 'ProtestRiot', sans-serif;
}
body h1 {
  font-weight: 700;
  font-size: 44px;
  line-height: 52px;
  color: #8b1c1c;
  margin-bottom: 20px;
}
body h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 44px;
  color: #343434;
}
body h3 {
  font-weight: 700;
  font-size: 25px;
  line-height: 35px;
  color: #8b1c1c;
}
body p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #343434;
}
body a {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #ff6666;
}
@media screen and (max-width: 768px) {
  body h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #8b1c1c;
    margin-bottom: 15px;
  }
  body h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #343434;
  }
  body h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #8b1c1c;
  }
  body p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #343434;
  }
  body a {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #ff6666;
  }
}
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  color: #ff6666;
  text-decoration: none;
}
.header {
  background-color: #8b1c1c;
  text-align: center;
  padding: 50px 0;
}
.header h1,
.header p {
  color: white;
}
.info {
  padding: 50px 0;
}
.info_text {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer {
  background-color: #8b1c1c;
  padding: 30px 0;
}
.footer_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.footer_container p {
  color: white;
}
.footer_nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.footer-bottom img {
  border-radius: 100%;
  max-width: 80px;
}
.footer-bottom img:hover {
  transform: scale(1.1);
}
