@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap");

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  outline: none;
}

:root {
  --primary-color: #027e69;
  --primary-font: "Quicksand", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--primary-font);
  background-color: #f5f5ec;
}

img {
  width: 100%;
}

a,
a:hover {
  text-decoration: none;
  color: black;
}

.container {
  max-width: 100%;
  width: 900px;
  margin: 0 auto;
}


/* ========== SECTION ========== */
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem;
}

.cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cover_img {
  width: 30%;
  border-radius: 50%;
}

.cover_img img {
  border-radius: inherit;
}

.cover a {
  color: #1b1b1b;
  font-weight: 700;
  transition: 0.4s all ease-in-out;
}

.cover a:hover {color: var(--primary-color);}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 1rem;
}

.buttons .btn {
  padding: 12px 20px;
  width: 300px;
  max-width: 100%;
  text-align: center;
  border-radius: 25px;
  background: #027e69;
  border: 1px solid #027e69;
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
  transition: 0.4s all ease-in-out;
}

.buttons .btn:hover {
  background: transparent;
  color: #027e69;
}


/*  FOOTER
----------------------*/
.footer-section {
  background-color: var(--primary-color);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  font-size: 18px;
  padding: 45px;
}

.footer-section .footer-content {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

/* Footer  Responsive */

@media (max-width: 600px) {
  .footer-section {
    padding: 35px;
  }

  .footer-section .footer-content {
    font-size: 12px;
  }
}

footer {
  position: fixed;
  bottom: 0;
}

@media (max-height: 800px) {
  footer {
    position: static;
  }
}

/*------------ Responsive Design -----------*/

@media (max-width: 600px) {
  .cover_img {
    width: 50%;
  }

  .buttons .btn {
    font-size: 16px;
  }
}