@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
* {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: linear-gradient(#52b69a, #184e77);
  background-repeat: no-repeat;
  overflow-x: hidden;
}
body header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  overflow-x: hidden;
}
body header .logo {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  font-size: 2.5em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body header ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
body header ul li {
  list-style: none;
  margin-left: 20px;
}
body header ul li a {
  text-decoration: none;
  padding: 6px 15px;
  color: #fff;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 1.25em;
}
body header ul li a:hover {
  background-color: #fff;
  color: #184e77;
}
body header ul li a.active {
  background-color: #fff;
  color: #184e77;
  font-weight: bold;
}
body .blog h1 {
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  margin-top: 150px;
  text-transform: uppercase;
}
body .blog a {
  text-decoration: none;
  color: #000;
}
body .blog a:hover {
  text-decoration: underline;
}
body .blog .date {
  color: #fff;
  text-align: center;
  font-size: 1.25em;
}
body .blog .text {
  color: #fff;
  text-align: left;
  margin-top: 50px;
  margin-left: 15%;
  margin-right: 15%;
  margin-bottom: 50px;
  font-size: 1.25em;
}
body .blog .image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}
body .blog .video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}/*# sourceMappingURL=style.css.map */