body,
html {
  padding: 0;
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  min-height: 100vh;
  overflow: hidden;
}

body {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #F8F7F3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

nav {
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

nav img {
  height: 60px;
  width: auto;
}

.landing-cont {
  text-align: center;
  padding: 0 16px;
}

.landing-cont h1 {
  font-family: 'IBM Plex Serif', serif;
  color: #830136;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 700;
}

.landing-cont h3 {
  font-family: 'IBM Plex Serif', serif;
  color: #4A5568;
  font-size: 22px;
  margin-top: 16px;
  font-weight: 500;
  margin: 0;
}

.stay-tuned-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.stay-tuned-cont p {
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
  color: #2D3748;
  letter-spacing: 2px;
  font-size: 18px;
}

.stay-tuned-cont img {
  min-width: 26px;
  width: 26px;
  height: auto;
}

.contact-us {
  color: #4A5568;
  font-size: 14px;
  margin-top: 60px;
}

.contact-us a {
  color: #830136;
  font-weight: 500;
  text-decoration: none;
}

footer {
  width: 100%;
  background-color: #FAFAFA;
  border-top: 1px solid #CDD5DF;
  text-align: center;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

footer p {
  font-size: 12px;
  color: #718096;
  line-height: 14px;
  margin: 0;
  font-weight: 300;
}

footer p span{
  color: #4A5568;
  font-weight: 400;
}