.div-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  height: 100vh;
  margin-left: 5%;
  margin-top: 0;
  gap: 50px;
}

.img-1 {
  display: flex;
  align-self: center;
  transform: scale(0.33);
  margin-top: -50px;
}

.buttons button {
  background: url('../resources/button.png');
  background-size: cover;
  color: #fff;
  font-size: 1.2rem;
  border: none;
  border-radius: 7px;
  padding: 16px 32px;
  position: relative;
  z-index: 1;
}

.title-header {
  font-family: var(--font-sans, "Geist", Arial, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol);
  font-weight: bold;
  font-size: 50px;
  text-align: left;
  margin-top: 0px;
  color: #fff;
}

.content {
  max-width: 1000px;
  height: auto;
  margin: 0;
  position: relative;
  bottom: 0;
}

.content img {
  width: 100%;
  height: auto;
  max-width: 1500px;
  object-fit: contain;
}

.background {
  background-color: #000;
}

.subtitle-header {
  color: #fff;
  text-align: left;
  font-size: 50px;
  margin-bottom: 25px;
  font-family: 'Instrument Serif', serif;
  font-weight: 300;
}

.text-header {
  flex: 1;
  margin-bottom: 30px;
  align-self: center;
}

.img-header {
  margin-top: -60px;
  margin-bottom: -200px;
}

.Platforms {
  display: flex;
  gap: 20px;
  color: #707070;
  font-family: 'Inter', sans-serif;
  margin-top: 15px;
}

.bellow-header-text {
  color: #fff;
  font-family: 'Inter', sans-serif;
  margin-top: 25px;
  font-size: 20px;
}

.input-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background-color:   ;
}

.custom-input {
  flex: 1;
  height: 40px;
  background-color: #181818;
  border: 1px solid #454545;
  border-radius: 5px;
  color: #fff;
  padding: 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  margin-top: 0;
}

.submit-button {
  height: 42px;
  width: 42px;
  background-color: #454545;
  border: 1px solid #454545;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.submit-button:hover {
  background-color: #666;
}

.send-icon {
  width: 20px;
  height: 20px;
  margin-left: -5px;
}

.main-section {
  display: flex;
  width: auto;
}

.subtitle-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  margin-top: -30px;
  height: 45px;
  width: auto;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .div-header {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    gap: 30px;
    margin-left: 0;
    padding: 20px 5%;
    position: relative;
  }

  .main-section {
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .text-header {
    margin-bottom: 20px;
    text-align: center;
    z-index: 2;
    position: relative;
  }
  
  .content {
    position: relative;
    width: 100%;
    margin: -50px;
    
  }
  
  .content img {
    content: url('../resources/mobile_content.png');
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .title-header {
    text-align: center;
    font-size: 39px !important;
  }
  
  .subtitle-header {
    text-align: center;
    margin-top: 70px;
    font-size: 42px !important;
  }
  
  .bellow-header-text {
    text-align: center;
  }
  
  .Platforms {
    justify-content: center;
  }
  
  .img-header {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .subtitle-container {
    justify-content: center;
  }

  .logo {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .title-header {
    font-size: 28px;
  }
  
  .subtitle-header {
    font-size: 28px;
  }
  
  .custom-input {
    width: 80%;
  }
}