header{
  height: 100px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: none;
}

.hero-img{
  width: calc(100vw - 4px);
  overflow: hidden;  
  height: 300px;
  object-fit: cover;
  filter: brightness(0.6);
}

footer{
  background-color: #0c150f;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

footer .wrapper{
  display: flex;
  max-width: var(--max-width);
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

footer .links{
  display: flex;
  flex-direction: column;
}

footer a{
  color: var(--main-color-text);
  text-decoration: none;
  transition: all 175ms ease-in-out;
}

footer a:hover{
  color: var(--main-color-text-hover);
  transition: all 175ms ease-in-out;
}

.madeby{
  display: flex;
  align-items: center;
  gap: 5px;
}

.codecrusher-logo{
  width: 20px;
}

@media(max-width: 1100px){
  footer{
    padding: 60px 40px;
  }
}

@media(max-width: 660px){
  footer .wrapper{
    flex-direction: column;
    gap: 40px;
  }

  footer .links{
    text-align: center;
  }
}