@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
  --dark-color: #333; /* #175821; */
  --light-color: #e8e6dd;
  --alt-light-color: #f2f2ef;
}

body {
  background: var(--light-color);
  font-family: 'Poppins', sans-serif;
  color: var(--dark-color);
}

.body-content {
  min-height: calc(100vh - 200px);
}

a {
  color: var(--dark-color);
}

ul {
  font-size: 1.4rem;
  line-height: 1.8rem;
}

.std-spacer {
  height: 60px;
}

#main-logo {
  position: relative;
  width: 50%;
}

.main-img {
  width: 100%;
}

#caption {
  width: 150px;
  position:absolute;
  right:-200px;
}

.content {
  position: relative;
  margin: auto;
  width: 800px;
}

.padded-content {
  padding-left: 20px;
  padding-right: 20px;
}

header {
  margin-top: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--alt-light-color);
}

footer {
  margin-top: 20px;
  background: var(--alt-light-color);
  padding: 15px;
  font-size: 0.8rem;
  text-align: center;
}

.main-link {
  padding: 20px;
  border: 2px solid #333;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  background: var(--alt-light-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  width: 30%;
  font-weight: bold;
}

.main-link:hover {
  background: white;
}

p {
  margin-bottom: 20px;
}

strong {
  font-weight: bold;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

@media only screen and (max-width: 800px) {
  .content {
    width: 100%;
  }
  #main-logo {
    width: 60%;
  }
  .std-spacer {
    height: 40px;
  }
  #caption {
    width: 100px;
    right: -140px;
  }
  .main-link {
    width: 80%;
  }
}

@media only screen and (max-width: 450px) {
  #main-logo {
    width: 100%;
  }
  #caption {
    display: none;
  }
}