.upboard-section {
  display: flex;
  background-color: #ffffff;
  margin-bottom: 100px;
}

.upboard-container {
  width: fit-content;
  margin: 10px 10px 10px 20px;
  padding: 10px;
  border-radius: 15px;
  background-color: #dcd6d6;
}

.upboard-container h2 {
  padding-top: 10px;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-decoration: underline;
}

.upboard-box {
  display: flex;
  position: relative;
  margin: 5px 10px 10px 10px;
}

.upboard-box p {
  padding: 10px;
  text-align: justify;
  font-size: 16px;
}

.upboard-box img {
  width: 200px;
  height: 200px;
  border: none;
  margin-left: 10px;
  margin-top: 20px;
  border-radius: 50%;
}

.upboard-links {
  width: fit-content;
  height: auto;
  border: 5px solid rgb(189, 183, 183);
  border-radius: 15px;
  margin: 10px;
  padding: 10px;
  background-color: #2ca02e;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.upboard-links h2 {
  text-align: center;
  text-decoration: underline;
  color: #000000;
  font-size: 20px;
  margin-bottom: 10px;
}

.upboard-links ul {
  margin: 10px 10px 0 30px;
  line-height: 1.5;
  list-style: none;
}

.upboard-links ul li::before {
  content: '\2714';  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #ffffff; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.upboard-links a {
  text-decoration: none;
  color: #ffffff;
}

.upboard-links a:hover {
  color: rgb(59, 16, 133);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {

  .upboard-section {
    overflow: hidden;
    margin: 20px 0;
  }

  .upboard-container {
    border: 4px solid black;
    border-radius: 0;
    margin: 0;
    padding: 0;
    display: none;
  }
  
  .upboard-links {
    width: 100%;
  }
  /* .upboard-container h2 {
    font-size: 22px;
    padding: 10px;
    text-decoration: none;
  }

  .upboard-container .upboard-box {
    margin: 0;
    border: 2px solid rgb(196, 16, 16);
  } */

}