/* Slogan Styling*/
#slogan {
  border: transparent 1px solid;
  width: 100%;
  height: 620px;
  background: linear-gradient(to right, #2C94D3, #4A56F9);
  display: flex;
  justify-content: center;
  align-items: center;
}
#slogan div {
  color: #FFF;
  text-align: center;
}
#slogan div h1 {
  font-weight: 400;
  font-size: 3.2em;
  margin-bottom: 60px;
}
#slogan div h2 {
  font-weight: 300;
  font-size: 1.8em;
  margin-bottom: 50px;
}
#slogan div h1, #slogan div h2 {
  font-family: "Space Grotesk", sans-serif;
}
#slogan div a {
  color: #FFF;
  text-decoration: none;
  font-size: 1.8em;
  font-weight: 600;
  font-family: "Google Sans Flex", sans-serif;
  background-color: #FE393C;
  padding: 15px 30px;
  border-radius: 40px;
  transition: 0.5s ease;
}
#slogan div a:hover {
  background-color: #FFF;
  color: #FE393C;
}

/* Application Styling */
.Application h1 {
  font-weight: 400;
  font-size: 3.2em;
  margin: 40px 0;
  text-align: center;
  color: #FE393C;
  font-family: "Space Grotesk", sans-serif;
}
.Application .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.Application .content .content-item {
  font-family: "Space Grotesk", sans-serif;
  background: #4A56F9;
  padding: 50px;
  width: 520px;
  height: 300px;
  line-height: 50px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Application .content .content-item p {
  color: #FFF;
  font-size: 2.3em;
  text-align: center;
}
.Application .content .content-item a {
  color: #FFF;
  text-decoration: none;
  font-family: "Google Sans Flex", sans-serif;
  font-size: 1.2em;
  border: 1px solid #FFF;
  padding: 0 20px;
  margin-top: 30px;
  transition: 0.3s ease;
}
.Application .content .content-item a:hover {
  color: #4A56F9;
  background-color: #FFF;
}/*# sourceMappingURL=index.css.map */