@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  --main-blue: #032c38;
  --lighter-blue: #064456;
  --darker-blue: #051519;

  --main-green: #32cc9d;
  --darker-green: #60a274;

  --main-light: #fff;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  font-family: "Outfit", serif;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 100%;
  transition: all 0.4s ease-in-out;
}

body {
  overflow-x: hidden;
}

button {
  font-weight: bold;
  font-weight: bold;
  padding: 12px 0;
  width: 250px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

button:hover {
  scale: calc(105%);
}

.btnLight {
  background-color: var(--main-green);
  color: var(--darker-blue);
}
.btnLight:hover {
  background-color: var(--darker-green);
  color: var(--lighter-blue);
}
.btnDark {
  background-color: var(--main-blue);
  color: var(--main-light);
}
.btnDark:hover {
  background-color: var(--darker-blue);
}

header {
  background-color: var(--main-green);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  z-index: 10;
  border-bottom: 1px solid rgb(5, 21, 25, 0.25);
}

header img {
  width: 200px;
}

.scaleItem:hover {
  scale: calc(105%);
}

.pay {
  color: var(--main-green);
}

footer {
  width: 100%;
  padding: 50px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer img {
  width: 200px;
}

footer > .links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin-top: 40px;
}

footer > .links > div {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 640px) {
  header img {
    width: 45%;
  }
  header button {
    width: 45%;
    font-size: 15px;
  }

  footer > .links {
    flex-direction: column;
  }
  footer > .links div {
    width: 80%;
    padding: 20px 0;
  }
}
