/* Ubuntu */

@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* General Styles */
html {
  height: 100%;
  width: 100%;
  font-family: 'Ubuntu', sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

header {
  background-color: lightgrey;
  color: black;
  padding: 20px;
  text-align: center;
}
header h1 a {
  color: inherit; /* Inherit the header color */
  text-decoration: inherit; /* Remove underline */
}
header h1 {
  font-weight: bold;
  font-size: 1.6rem;
  font-family: 'Bungee', sans-serif;
}

header h2 {
  font-weight: normal;
  font-size: 1.3rem;
}

/* Body Styles */
.bodyc {
  margin: 20px auto;
  max-width: 800px;
  padding: 20px;
}

p {
  font-size: 1.1rem;
  line-height: 1.6rem;
  text-align: justify;
}

/* Image Styles */
img {
  max-width: 600px;
}

/* Media Queries */
@media (max-width: 800px) {
  .bodyc {
    max-width: 100%;
  }
}

/* Image Styles */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  padding: 5px;
  position: relative;
}

/* Text Container Styles */
.text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%); /* Center the element */
}

/* Hover Effect for example Class */
.imglist li:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease-in;
}

/* Smaller Size for example Class */
.image-container example p {
  width: 200px;
  height: 200px;
}

/* List Styles */
.imglist {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.imglist p {
  text-align: center;
}

.footer {
  background-color: grey;
  color: white;
  padding: 20px;
  text-align: center;
}

.footer p {
  text-align: center;
}

.imglist img {
  height: 200px; /* Adjust this value to your desired height */
}

/* Media Queries for Responsiveness */
@media (max-width: 800px) {
  .imglist img {
    height: 150px; /* Adjust this value for smaller screens */
  }
}

.navbar {
  padding: 10px;
  text-align: center;
}
.navbar a {
  color: #333;
  text-decoration: none;
  margin: 0 10px;
}

.fact {
  background-color: grey;
  color: white;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.signup { 
  margin: 0 auto; 
  padding: 2em; 
  border: 1px solid #ccc; 
}

.statuses label { 
  display: block;
  margin: 10px 0;
}

.post { 
  display: none; 
  padding: 20px; 
}

#non-indigenouss:checked ~ .true { display: block; }
#non-indigenouss:checked ~ .false { display: none; }
#indigenouss:checked ~ .false { display: block; }
#indigenouss:checked ~ .true { display: none; }

.tosh {
    text-align: center;
}
