@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&display=swap");

:root {
  --font-1: "Fira Sans", serif;
  --font-2: "Fira Sans", sans-serif;
  --font-3: "Fira Sans", serif;

  /* monospace
    */
  --font-mono: Fira Sans;
}
.logo img {
  width: 200px;
}
body {
  background-color: #fceddb42;
}
.s-intro__particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 0;
  margin: 0;
  opacity: 1;
}

.s-intro__particles canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.main-container {
  padding: 50px;
  width: 100%;
  height: 100%;
  font-family: var(--font-3);
}

.title {
  font-size: 22px;
  color: #111;
  margin-bottom: 15px;
}

h1 {
  font-size: 65px;
  line-height: 75px;
  color: #e31e24;
  margin-bottom: 35px;
  font-family: "Fira Sans", sans-serif;
}

.main-row {
  margin-top: 80px;
}

.contact a {
  color: #111;
  text-decoration: none;
  font-size: 22px;
  line-height: 24px;
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-1);
}

.address p {
  color: #111;
  text-decoration: none;
  font-size: 22px;
  line-height: 38px;
  display: block;
  margin-bottom: 20px !important;
  font-family: var(--font-1);
}

h5 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  color: #e31e24;
  margin-bottom: 10px;
}

img.main-img {
  width: 100%;
  transition: all 0.4s ease-in-out;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 35px !important;
    line-height: 45px !important;
  }

  .main-container {
    padding: 50px 20px;
  }

  .s-intro__logo .logo img {
    width: 150px !important;
  }
}

@media screen and (max-width: 1400px) {
  h1 {
    font-size: 45px;
    line-height: 55px;
  }

  .contact a,
  .address p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 5px;
  }

  .contact {
    margin-bottom: 10px;
  }

  .main-row {
    margin-top: 40px;
  }
}

@media only screen and (min-device-width: 810px) and (max-device-width: 1024px) and (orientation: portrait) {
  img.main-img {
    height: 450px;
    width: auto;
    text-align: center;
  }

  .main-img-container {
    text-align: center !important;
  }
}
