body {
/*  font-family: Arial, sans-serif;*/
  font-family: 'Raleway', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-image: url('img/autism-balloon.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

h1 {
    text-align:center;
}

header {
  background-color: #0d3eaf;
  padding: 20px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
display: flex;
    justify-content: space-between;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: normal;
  font-size: 16px;
}

nav ul li a:hover {
  color: #f5f5f5;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

#hero {
/*  background-color: #0099cc; */
  background-color: rgba(179, 242, 255, 0.75); /* 50% transparent */
  height: 500px;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#hero h1 {
  font-size: 48px;
  color: #fff;
  margin: 0;
}

#hero p {
  font-size: 24px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  color: #0d3eaf;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0d3eaf;
  color: #fff;
}

#gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.artwork {
  width: calc(33.33% - 10px);
  margin-bottom: 20px;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

.artwork img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.artwork h3 {
  font-size: 24px;
  margin: 10px 0;
}

.artwork p {
  font-size: 16px;
  margin: 0;
}

#artists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.artist {
  width: calc(50% - 10px);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

.artist img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 20px;
}

.artist h3 {
  font-size: 24px;
  margin: 0;
}

.artist p {
  font-size: 16px;
  margin: 10px 0;
}

footer {
  background-color: #ccc;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 0;
}

.tagline::before {
    content: "Promoting Artistic Expression and Creativity Among Individuals on the Autism Spectrum";
}

.tagline.var-text {
    text-align: center;
}

.center-text {
	text-align; center;
}

.message-box {
  height: 500px;
  width: 100%; /* adjust this value as needed */
}

/* Box container */
.box {
/*   background-color: #3f3f3f; */
/*   background-color: rgba(63, 63, 63, 0.75); */
  background-color: rgba(242, 255, 179, 0.75);
  border: 5px solid #cc9900;
  border-radius: 15px;
  box-shadow: 0px 0px 15px 0px #cc9900;
  padding: 20px;
  margin: 20px auto;
  max-width: 1000px;
  text-align: justify;
}

.box p {
  color: black;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* .container {
  background-color: rgba(255, 255, 255, 0.75);
} */

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #0d3eaf;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #f5f5f5;
  color: #0d3eaf;
}

.gallery-header {
  text-align: center;
}

.gallery-header h1 {
  margin-top: 0;
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  font-size: 1.2em;
}

.pagination ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination a {
  display: block;
  padding: 5px 10px;
  border: 1px solid #ccc;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: #ccc;
  color: #fff;
}

@media (max-width: 768px) {
  nav ul li {
    display: block;
    margin-bottom: 10px;
  }
  
  .artwork {
    width: 100%;
  }
  
  .artist {
    width: 100%;
  }
}

