.top-text a{
  color: var(--main-color);
  text-decoration: none;
  position: absolute;
  top: 200px;
  border: solid 2px var(--main-color);
  padding: 8px 16px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.4);
}

.page-title{
  font-size: 80px;
  font-weight: 700;
  color: var(--main-color);
  font-family: "artifex-hand-cf", sans-serif, Arial, Helvetica;
  position: absolute;
  top: 20px;
}

.top-text{
  height: 380px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
  top: 0;
  position: relative;
  -webkit-box-shadow: 10px 10px 28px -12px rgba(0,0,0,0.43);
  -moz-box-shadow: 10px 10px 28px -12px rgba(0,0,0,0.43);
  box-shadow: 10px 10px 28px -12px rgba(0,0,0,0.43);
}

.logo{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 106px);
  top: 280px;
  border: solid 6px var(--main-color);
  background-color: #613824;
  overflow: hidden;
  -webkit-box-shadow: 10px 10px 28px -12px rgba(0,0,0,0.43);
  -moz-box-shadow: 10px 10px 28px -12px rgba(0,0,0,0.43);
  box-shadow: 10px 10px 28px -12px rgba(0,0,0,0.43);
}

.logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media(max-width: 750px){
  .logo{
    width: 150px;
    height: 150px;
    border: solid 6px var(--main-color);
    left: calc(50% - 78px);
  }

  .top-text{
    margin-bottom: 50px;
  }
}

footer{
  background-color: #613824;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50px;
  color: var(--main-color);
}

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-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: 1300px){
  footer{
    padding: 60px 40px;
  }
}

@media(max-width: 660px){
  footer .wrapper{
    flex-direction: column;
    gap: 40px;
  }

  footer .links{
    text-align: center;
  }
}