* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
    background-image: url(hatter2.jpg);
    display: flex;
    align-items: center;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100vw;
}
#hákedok{
    height: 70vh;
    width: 60vw;
}
#header{
    display: flex;
    justify-content: left;
    align-items: center;
    height: 15vh;
    width: 100vw;
    background: linear-gradient(360deg,rgba(255, 255, 255, 1) 0%, rgba(177, 177, 177, 1) 100%);

}
#visszagomb{
  position: relative;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s;
  border: 2px solid white;
  font-family: Century;
  font-weight: 500;
  color: white;
  background-color: rgb(72,72,72);
  margin-right: 25%;
  margin-left: 10%; 
}

#visszagomb:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#visszagomb:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#visszagomb::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.8s;
}

#visszagomb::after {
  background-color: #fff;
}

#visszagomb:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
#body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    width: 60vw;
    margin: 10px;
}
#footer{
    display: flex;
    height: 13vh;
    width: 100%;
    background: linear-gradient(180deg,rgba(177, 177, 177, 1) 0%, rgba(255, 255, 255, 1) 50%);
    padding: 5px;
    justify-content: center;
}
#kandofooter{
    height: 10vh;
    width: 10vw;
}
.cím{
    font-size: 48px;
    font-family: Century;
}