#Info {
  position: relative;
  width: 100vw;
  height: auto;
  /* background-color: #282828; */
  padding: 10px 0 10px 0;
}

.info-element {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  max-width: 800px;
  padding: 20px;


}

.info-element .info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: var(--gray-color);
}


.info-element .info-body {
  color: var(--gray-color);
}

.info-element h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.info-element button {
  background-color: var(--red-color);
  border: none;
  color: var(--white-color);
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.info-element .info-body p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--gray-color);
}

.info_url_btn {
  background-color: var(--red-color);
  border: none;

  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.5rem;

  text-decoration: none;
  color: var(--white-color);
  float: right;

}