* {
  margin: 0;
  padding: 0;
}

body {
  color: white;
  font-family: sans-serif;
  background: linear-gradient(315deg, #0e4053, #1c7fa6);
  background-size: 300%;
  -webkit-animation: animated_gradient 8s ease-in-out infinite;
  -moz-animation: animated_gradient 8s ease-in-out infinite;
  animation: animated_gradient 8s ease-in-out infinite;
  min-height: 100vh;
}

/* style scrollbar of body */
body::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-track {
  background: #1c7fa6;
}

body::-webkit-scrollbar-thumb {
  background: #0e4053;
}

@keyframes animated_gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

h1 {
  font-weight: 400;
  font-size: 72px;
  margin-bottom: 40px;
}

h2 {
  font-weight: 400;
  font-size: 48px;
  margin-bottom: 60px;
}

h3 {
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 40px;
}

p {
  max-width: 800px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 24px;
}

p strong {
  font-size: 16px;
}

.company-logo {
  width: 200px;
  height: 200px;
}

.vertical-align-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

footer {
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
}

footer p {
  max-width: none;
  margin: 0;
  padding: 0;
}

footer a {
  color: white;
}

@media screen and (max-width: 650px) {
  h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 32px;
  }

  footer {
    flex-direction: column;
    gap: 20px;
  }
}
