*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  min-height: 100%;
  /* this defines what 1 rem is  */
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

*::selection {
  background-color: rgb(84, 19, 226);
}

.center-text {
  text-align: center;
}

.margin-bottom-big {
  margin-bottom: 8rem;
}

.margin-bottom {
  margin-bottom: 5rem;
}

.margin-top {
  margin-top: 8rem;
}

.secondary-heading {
  font-size: 5rem;
  color: hsl(169, 100%, 16%);
}

@media (max-width: 720px) {
  .secondary-heading {
    font-size: 2.5rem;
    margin: 2rem auto;
  }
}
.header {
  padding: 0rem 4rem 0rem 4rem;
  background-color: hsl(169, 100%, 16%);
  flex-direction: row;
  justify-content: space-between;
}
.header .navbar {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .navbar-ul {
  list-style: none;
  display: inline-block;
}
.header .navbar-ul li {
  text-decoration: none;
  display: inline-block;
}
.header .navbar-ul li:not(:last-child) {
  margin-right: 1.5rem;
}
.header .navbar-ul li a {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  font-size: 3rem;
  text-align: center;
  text-transform: capitalize;
  padding: 0;
}
.header .navbar-ul li a:hover {
  border-bottom: 1px solid #fcee21;
}

.logo {
  width: 25rem;
  height: 7rem;
}

.burger {
  font-size: 5rem;
  color: red;
  display: none;
  height: 100%;
}

.burger2 {
  font-size: 4rem;
  color: red;
  display: none;
}

@media (max-width: 620px) {
  .header .logo {
    width: 15rem;
    height: 5rem;
    background-color: transparent;
  }
}
@media (max-width: 620px) {
  .header {
    padding: 0 0 0 1rem;
  }
  .navbar .menu {
    display: none;
    background-color: hsl(169, 100%, 16%);
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in;
  }
  .navbar .menu a {
    margin-left: 2rem;
  }
  .navbar .menu.active {
    display: flex;
    flex-direction: column;
    /* position: absolute;
    top: 7.5rem;
    right: 1rem; */
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
  }
  .navbar .burger {
    display: block;
  }
  .navbar .burger2 {
    display: block;
    margin-left: 2rem;
    margin-top: 1rem;
  }
}
.site-footer {
  font-size: 2rem;
  padding: 1rem 0;
  color: hsl(0, 0%, 100%);
  background-color: hsl(169, 100%, 16%);
  text-align: center;
  margin-top: auto;
}

.hero-section {
  height: max-content;
  display: flex;
  background-color: hsl(0, 0%, 100%);
  padding: 0rem 4rem 0rem 4rem;
}
.hero-section-text {
  width: 60%;
  display: inline-block;
}
.hero-section-text-title {
  font-size: 4rem;
  text-indent: 0%;
  text-align: justify;
  margin: 2rem 0 3rem 0;
  color: hsl(0, 0%, 10%);
  font-weight: 400;
}
.hero-section-text-span {
  font-size: 3rem;
  text-align: justify;
  color: black;
  padding-bottom: 5rem;
}
.hero-section-img .hero-img {
  width: 100%;
  margin-left: 3rem;
  height: 35rem;
  object-fit: fill;
  object-position: center;
  display: inline-block;
  margin-top: 2rem;
}

@media (max-width: 720px) {
  .hero-section {
    padding: 0rem 2rem 0rem 2rem;
  }
  .hero-section-text-title {
    text-align: left;
  }
  .hero-section-img .hero-img {
    display: none;
  }
  .hero-section-text {
    width: 100%;
  }
  .hero-section-text-title {
    font-size: 2rem;
  }
  .hero-section-text-span {
    font-size: 1.5rem;
    padding-bottom: 3rem;
  }
}
.article-section {
  padding-top: 5rem;
  background-color: hsl(169, 70%, 95%);
  padding-bottom: 2rem;
}

.article-container {
  display: flex;
  flex-direction: column;
}
.article-container .article-card {
  width: 95%;
  margin: 1rem auto;
  background-color: rgba(0, 199, 162, 0.25);
  box-shadow: 0px 0px 5px 0px rgba(67, 64, 64, 0.751);
}
.article-container .article-card-title {
  font-size: 3rem;
  font-weight: 600;
  text-align: left;
  margin: 2rem 2rem 0rem 4rem;
}
.article-container .card-meta {
  grid-area: meta;
  color: hsl(0, 0%, 10%);
  font-size: 1.5rem;
  margin: 2rem 2rem 0rem 4rem;
  text-align: left;
}
.article-container .article-card-content {
  font-size: 1.5rem;
  margin: 2rem 2rem 0rem 4rem;
  text-align: left;
}
.article-container .card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media (min-width: 700px) {
  .article-card {
    display: grid;
    grid-template-columns: 1fr 40%;
    column-gap: 1rem;
  }
  .img {
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.article {
  margin: 5rem 15rem;
  padding: 0rem 4rem 0rem 4rem;
}
.article p {
  font-size: 2rem;
  color: black;
  margin: 1rem 0rem;
}
.article ul li {
  font-size: 2rem;
  color: black;
  margin: 1rem 0rem;
}
.article ol li {
  font-size: 2rem;
  color: black;
  margin: 1rem 0rem;
}
.article-title {
  font-size: 4rem;
  margin-bottom: 4rem;
}
.article-img {
  margin: 1rem auto;
  width: 100%;
  height: 50rem;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.article__figure figcaption {
  margin: 0 0;
  font-size: 1.5rem;
  opacity: 0.9;
}

@media (max-width: 700px) {
  .article {
    margin: 2rem 0rem;
    padding: 1rem 2rem;
  }
  .article p {
    font-size: 2rem;
    color: black;
    margin: 1rem 0rem;
  }
  .article p img {
    margin: 1rem auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .article ul li {
    font-size: 2rem;
    color: black;
    margin: 0rem 2rem;
  }
  .article ol li {
    font-size: 2rem;
    color: black;
    margin: 0rem 2rem;
  }
  .article-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .article-img {
    margin: 1rem auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .article__figure figcaption {
    margin: 0 0;
    font-size: 1.5rem;
    opacity: 0.9;
  }
}
.btn {
  background-color: hsl(169, 100%, 26%);
  color: white;
  padding: 1rem 3rem;
  border: 2px solid hsl(169, 100%, 26%);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  margin: 2rem 4rem;
  cursor: pointer;
  font-family: "merriweather";
  font-size: 2rem;
  display: inline-block;
  line-height: 1;
  border-radius: 0.25em;
  align-self: start;
  justify-self: start;
}
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 5px rgba(49, 47, 47, 0.307);
  scale: 1.05;
  background-color: hsl(169, 100%, 16%);
  border-color: hsl(169, 100%, 16%);
}

.btn--pagination {
  background-color: #8d4ef5;
  color: white;
  padding: 1rem 3rem;
  border: 2px solid #8d4ef5;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  margin: 2rem 4rem;
  cursor: pointer;
  font-family: "merriweather";
  font-size: 2rem;
  display: inline-block;
  line-height: 1;
  border-radius: 0.25em;
  align-self: start;
  justify-self: start;
}
.btn--pagination:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 5px rgba(49, 47, 47, 0.307);
  scale: 1.05;
  background-color: hsl(169, 100%, 39%);
  border-color: hsl(169, 100%, 39%);
}

/*# sourceMappingURL=style.css.map */
