header {
  display: flex;
  flex-direction: column;
  align-items: center;



  width: 100vw;
  height: 325px;
  overflow: hidden;

  background:
    linear-gradient(to bottom, rgba(20,35,15,.45) 0%, rgba(20,35,15,.15) 60%, rgba(20,35,15,.55) 100%),
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&q=80') center/cover no-repeat;
}

#top-head {
  display: flex;
  justify-content: center;

  gap: 120px;
}

.header-link-side {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  
  width: 450px;
}

.header-link-side:first-child {
  justify-content: flex-end;
}

.header-link-side span {
  font-size: 2em;
  font-weight: 400;
  /*color: rgb(10, 41, 7);*/
  color: rgb(54, 18, 8);
}

.header-link-side span a {
  text-decoration: none;
  color: inherit;
}

#logo-header {
  width: 250px;
  transition: scale 0.2s ease;
}

#logo-header:hover {
  scale: 1.02;
}

#bottom-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -25px;
}

#bottom-head span:first-child {
  font-size: 2em;
  font-weight: 500;
  color: aliceblue;
}

#bottom-head span:last-child {
  font-size: 1.2em;
  font-weight: 300;
  color: aliceblue;
  opacity: 0.75;
}