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

* {
  margin: 0;
}

html,
body {
  height: 100%;
  font-size: 62.5%;
  font-family: "Lato", sans-serif;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

.container {
  background-color: #82c91e;
}

.top-nav {
  margin: 0 auto;
  max-width: 130rem;
  padding: 0.4rem 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: white;

  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.logo-title {
  border: 1px solid white;
  padding: 0 8px;
  border-radius: 3px;
}

.sub-title {
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
}

.section-hero {
  background-color: #f4fce3;
  padding: 9.6rem 4.8rem;
}

.card-detail {
  margin: 0 auto;
  max-width: 80rem;
  background-color: #82c91e;
  border-radius: 36px;
  padding: 32px 32px 24px 32px;
}

.heading-sub {
  font-size: 3.2rem;
  font-weight: 700;
  color: #273c09;
  text-align: center;
  margin-bottom: 12px;
  background-color: #a8d962;
}

.link-style {
  text-decoration: none;
  color: #1c7ed6;
}

.cert-sub {
  font-size: 2.8rem;
  font-weight: 700;
  color: #09293c;
}

.cert-no {
  list-style: none;
  padding-left: 0;
}

.cert-no li {
  font-size: 2.4rem;
  padding-top: 4px;
  padding-left: 12px;
  display: block;
  border-radius: 8px;
}

.cert-no li:nth-child(odd) {
  background-color: #a8d962;
}

.footer {
  background-color: #313131;
  color: #989898;
  border-top: 6px solid #82c91e;

  padding: 24px 256px;
  font-size: 14px;
}

.footer-nav {
  text-decoration: none;
  list-style: none;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav:hover {
  cursor: pointer;
}

.footer-nav li {
  display: inline-block;
}

