@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* reset style */
html, body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  line-height: 1;
}

body {
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.25px;
  font-weight: 300;
  line-height: 1.375rem;
}

h1 {
  font-size: 2rem;
  color: #047857;
  text-align: center;
  margin-top: 6rem;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 1280px) {
  h1 {
    margin-top: 4.375rem;
    margin-bottom: 0;
  }
}

p {
  margin-block-start: 0;
  margin-block-end: 1rem;
}

b {
  font-weight: 500;
}

a {
  color: #047857;
  font-weight: 500;
}

nav {
  display: flex;
  justify-content: center;
  padding: 1.25rem 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.10), 0px 2px 4px rgba(0, 0, 0, 0.10);
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
}
@media only screen and (min-width: 1280px) {
  nav {
    justify-content: start;
    padding: 1.25rem 2rem;
  }
}

footer {
  text-align: center;
  padding: 1rem 2rem;
  background-color: #18181B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap:1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.container {
  max-width: 100%;
  min-height: calc(100vh - 140px);
  padding: 0 2rem;
  margin: 0 auto;
}
@media only screen and (min-width: 1280px) {
  .container {
    min-height: auto;
    padding: 0;
    margin: 0;
  }
}

.title-mobile {
  display: block;
}
@media only screen and (min-width: 1280px) {
  .title-mobile {
    display: none;
  }
}

.title-desktop {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .title-desktop {
    display: block;
  }
}

.main-content {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1280px) {
  .main-content {
    gap: 2rem;
    margin-top: 4.125rem;
    height: calc(100vh - 66px);
    flex-direction: row;
    padding-right: 2rem;
  }
}

.main-content img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  max-height: 680px;
}
@media only screen and (min-width: 1280px) {
  .main-content img {
    width: 70%;
    border-radius: 0;
    max-height: none;
  }
}

.separator {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #10b981;
}