html {
  scroll-behavior: smooth;
}

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

.navbar {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 20px;
}


.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;
}
.platform-bg{
  background-color: #181818;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}
.title-header {
  font-family: 'Instrument Serif', serif;
  font-weight: 300;
  text-align: center;
  font-size: 5rem;  
  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;
}

.logo-text {
    color: #fff;
  text-align: left;
  font-size: 2rem;  
  font-family: 'Instrument Serif', serif;
  font-weight: 300;

}



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

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

.Platforms {
  display: flex;
  gap: 20px;
  color: #707070;
  font-family: 'Inter', sans-serif;
  margin-top: 15px;
  align-content: center;
  justify-content: center; /* <-- Add this line */
}

.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;
  flex-direction: column;

}

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

.logo {
  gap: 10px;
  height: 2rem;
  width: auto;
}

.platform-logo {
  width: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .div-header {    
    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;
  }


}

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