* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

  --primary-color: #E75223;
}

* body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  height: 100vh;

  background-image: radial-gradient(in oklch circle, #ffffff 90.0%, #D9F3FB 100.0%);


  header {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 1rem;
    color: var(--primary-color);

    h1 {
      font-weight: 900;
    }
  }

  main {
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem;

    span {
      font-weight: 300;
    }
  }
}


span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1ch;
}

a {
  text-decoration: none;

  &:hover {
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
  }
}

.hero {
  background-color: transparent;

  &:hover {
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
  }
}

.algata {
  color: #6B08A5;
  font-weight: bold;
}

.teamwtwin {
  color: #F54900;
  font-weight: bold;
}

.computecloud {
  color: #00B8DB;
  font-weight: bold;
}

@media (max-width: 720px) {

  footer {
    span {
      p {
        display: none;
      }

      a {
        font-style: italic;
      }
    }
  }
}
