@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-list {
  position: relative;
  margin-top: 50px;
  padding: 100px;
}
body .blog-list .blog-title {
  font-size: 1.625em;
  text-decoration: none;
  padding: 12px 30px;
  color: #fff;
  border-radius: 20px;
  text-transform: uppercase;
}
body .blog-list .blog-title:hover {
  color: #000;
}
body .blog-list p {
  padding-left: 10%;
  padding-right: 30%;
  color: #fff;
  margin-bottom: 5vh;
  font-size: 1.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
body .blog-list .read-more {
  font-size: 1.125em;
  text-decoration: underline;
  padding: 0;
  color: #fff;
  border-radius: 0;
  text-transform: uppercase;
}
body .blog-list .read-more:hover {
  -webkit-text-decoration-color: #000;
          text-decoration-color: #000;
}/*# sourceMappingURL=blog-style.css.map */