.header-container {
  background-color: #2E2B2B;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 25px;
  margin-bottom: 45px;
}


.img-header {
  max-width: 100%;
}

.left-side {
  position: relative;
}

.about-button {
  position: absolute;
  top: 25px;
  left: 50px;
  padding: 10px 40px;
  background-color: hsl(212, 81%, 53%);
  border-style: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.about-button:hover {
  background-color: hsl(212, 81%, 43%);
}

.about-button:active {
  background-color: hsl(212, 81%, 33%);
}


.link-left{
  color: white;
  font-size: 15px;
  text-decoration: none;
}

.right-side {
  position: relative;
}

.contact-button {
  position: absolute;
  top: 25px;
  right: 50px;
  padding: 10px 40px;
  background-color: hsl(212, 81%, 53%);
  border-style: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-button:hover {
  background-color: hsl(212, 81%, 43%);
}

.contact-button:active {
  background-color: hsl(212, 81%, 33%);
}

.link-right {
  color: white;
  font-size: 15px;
  text-decoration: none;
}



.text-header {
  color: white;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  text-align: center;
  font-size: 20px;
}

.text-description {
 color: white;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 15px;

}

@media (max-width: 320px) {
  .header-container {
     width: 100%;
  }

  .text-header {
     font-size: 17px;
     margin-top: 28px;
  }

  .text-description {
    font-size: 12px;
    text-align: center;
    margin: 5px 5px;
  }

  .about-button {
    padding: 5px 10px;
    margin-top: -20px;
  }

  .contact-button {
    padding: 5px 10px;
    margin-top: -20px;
  }

  .link-right {
    font-size: 13px; 
    font-weight: 500;   
  }

  .link-left {
    font-size: 13px;
    font-weight: 500;
  }
} 

@media (max-width: 700px) {
  .header-container {
     width: 100%;
  }

  .text-header {
     font-size: 17px;
     margin-top: 28px;
  }

  .text-description {
    font-size: 12px;
    text-align: center;
    margin: 5px 5px;
  }

  .about-button {
    padding: 5px 10px;
    margin-top: -20px;
  }

  .contact-button {
    padding: 5px 10px;
    margin-top: -20px;
  }

  .link-right {
    font-size: 13px; 
    font-weight: 500;   
  }

  .link-left {
    font-size: 13px;
    font-weight: 500;
  }
}


@media (max-width: 1024px) {
  .header-container {
     width: 100%;
  }

  .text-header {
     font-size: 17px;
     margin-top: 28px;
  }

  .text-description {
    font-size: 12px;
    text-align: center;
    margin: 5px 5px;
  }

  .about-button {
    padding: 5px 10px;
    margin-top: -20px;
  }

  .contact-button {
    padding: 5px 10px;
    margin-top: -20px;
  }

  .link-right {
    font-size: 13px; 
    font-weight: 500;   
  }

  .link-left {
    font-size: 13px;
    font-weight: 500;
  }
}
    


