body {
  background-color: #2c3e50;
  color: #ecf0f1;
  font-family: Trajan, Arial;
  margin: 0;
  padding: 0;
}

.header-box {
  background-color: #34495e;
  border-radius: 10px;
  padding: 15px;
  margin: 20px auto;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.header-box img {
  border-radius: 5px;
}

.header-content {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header-content img {
  border-radius: 10px;
}

.header-content h1 {
  font-size: 2rem;
  margin: 0;
}

.intro-box{
  background-color: #34495e;
  border-radius: 10px;
  padding: 15px;
  margin: 20px auto;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.intro-box-content {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

.flex-box {
  background-color: #34495e;
  border-radius: 10px;
  padding: 15px;
  margin: 10px;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  text-align: center;
}

.flex-box img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.flex-box p {
  margin: 10px 0;
}

/* big screens (computers) */
@media (max-width: 950px) {
  .mobile-hidden {
    display: none;
  }
}


/* big screens (>tablet) */
@media (min-width: 768px) {
  .header-box img {
    max-height: 600px;
    max-width: 300px;
  }
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
  .header-box img {
    max-height: 400px;
    max-width: 250px;
  }
  /* .flex-box {
    width:75%;
  } */
}

/* Small screens (phones) */
@media (max-width: 600px) {
  .header-content{
    flex-direction:column;
    align-items: center;
    text-align: center;  
  }

  .header-box img {
    max-height: 300px;
    max-width: 200px;
  }

  .header-box h1 {
    margin-bottom: 20px;
  }
    /* .flex-box {
    width:75%;
  } */
}