/* styles.css */
/* Main stylesheet for the project */

/* Reset some default browser styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f8f9fa; /* pick one */
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex-grow: 1;
}

.jumbotron {
  background-color: #322d93;
  color: white;
  padding: 1rem 4rem;
  margin-bottom: 2rem;
  border-radius: 0.3rem;
}

.jumbotron a {
  color: #00ff62;
}

.jumbotron h1 {
  text-align: center;
}

a {
  color: #007bff;
}

.notice {
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: #c298ca;
  text-align: center;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* width: 400px; */
}

.footer-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 1rem;
}

.support {
  text-align: center;
  margin-top: 2rem;
}

.text-col {
  border-style: solid;
  border-radius: 6px;
  border-width: 0.1rem;
  border-color: #d7d6ec;
  margin-right: 3em;
  margin-left: 3em;
  margin-top: 1em;
  width: 38%;
  min-width: 400px;
  background-color: rgb(222, 239, 245);
}

.footer {
  text-align: center;
  padding: 1rem;
  background-color: #322d93;
  color: white;
  border-radius: 0.3rem;
}

.footer a {
  color: #00ff62;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
