body {
  font-family: 'Cabin', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #14140F;
  color: #A3CCAB;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #053D38;
  box-shadow: 0 7px 82px rgba(255, 255, 255, 0.1);
}

.logo {
  color: #F26800;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

.main-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 90px);
  margin: 0 20px;
  text-align: center;
  animation: fadeIn 2s ease;
}

.main-section img {
  height: 100%;
  margin-right: 50px;
  animation: slideIn 2s ease;
}

.main-section h1 {
  font-size: 36px;
  ine-height: 1.6;
  color: #A3CCAB;
  animation: fadeInText 2s ease;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideIn {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

@keyframes fadeInText {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media (max-width: 920px) {
  .main-section {
    flex-direction: column;
    height: auto;
  }

  .main-section img {
    max-width: 100%;
    margin-right: 0;
  }

  @keyframes slideIn {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
  }

}

@media (max-width: 472px) {
  .main-section img {
    height: auto;
  }
}