/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #eee;
  color: #111;
}

.navbar {
  position: fixed;
  width: 100%;
  background-color: #eee;
  z-index: 10;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding: 15px;
}

.navbar ul li a {
  color: #8B00FF;
  text-decoration: none;
  font-size: 1.2em;
  padding: 10px;
}

.navbar ul li a:hover {
  background-color: rgba(192, 192, 192, 0.6);
  border-radius: 5px;
}

.parallax {
  /* Parallax Effect */
  background-image: url('img/background.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  min-height: 100vh;
  padding: 75px 10px;
}

.parallax:first-of-type {
  height: 100vh;
}

.parallax-text {
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  padding: 25px 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 1000px;
}

.parallax h1, .parallax h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.parallax p {
  padding-bottom: 20px;
}

.content {
  background-color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 18px;
  text-align: justify;
  padding: 100px 20px;
}

.content-text {
  width: 100%;
  max-width: 1200px;
  padding-bottom: 20px;
}

.content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.logo {
  width: 100%;
  max-width: 960px;
  min-width: 300px;
}

.image-text-flex {
  display: flex;
  align-items: top;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
}

.image-text-flex img {
  margin-bottom: 20px;
  width: 60px;
  height: auto;
  filter: invert(10%) sepia(100%) saturate(5924%) hue-rotate(272deg) brightness(108%) contrast(123%);
}

@media screen and (max-width: 768px) {
  .image-text-flex {
    flex-direction: column;
  }
  
  .image-text-flex img {
    width: auto;
    height: 60px;
    margin: 0;
  }
}

.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #aaa;
}
