body{
    background-color: white;
    color: black;
    font-family: 'Candara Light';
    text-align: center;
    font-size: 30pt;
    overflow: hidden;
    user-select: none;
}
#fejlec{
    margin-top: -17.5%;
    position: fixed;
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-left: 30px;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    float: left;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    user-select: all;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    animation-name: fade-in;
    animation-duration: 4s;
}
div#fejlec>a{
    text-decoration: none;
    color:rgb(255, 255, 255)
}
@keyframes fade-in {
    from {color: rgb(255, 255, 255);}
    to {color: rgb(0, 0, 0);}
  }
.m1{
    margin-top: 20%;
}
a{
    text-decoration: none;
}
.b1 {
    position: relative;
    outline: none;
    text-decoration: none;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    height: 45px;
    width: 130px;
    opacity: 1;
    background-color: #ffffff;
    border: 2px solid rgb(0, 0, 0);
    margin-left: 45.6%;
    margin-top: 5%;
  }
  .b1 .b1span {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #111010;
    font-size: 12px;
    font-weight: bolder;
    letter-spacing: 1px;
  }
  .b1:hover {
    animation: b1rotate 0.7s ease-in-out both;
    background-color: rgb(0, 0, 0);
    transition: all 0.3s ease;
  }
  .b1:hover .b1span {
    animation: b1storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
    color:white;
    transition: all 0.3s ease;
  }
  @keyframes b1rotate {
    0% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }
    25% {
      transform: rotate(3deg) translate3d(0, 0, 0);
    }
    50% {
      transform: rotate(-3deg) translate3d(0, 0, 0);
    }
    75% {
      transform: rotate(1deg) translate3d(0, 0, 0);
    }
    100% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }
  }
  
  @keyframes b1storm {
    0% {
      transform: translate3d(0, 0, 0) translateZ(0);
    }
    25% {
      transform: translate3d(4px, 0, 0) translateZ(0);
    }
    50% {
      transform: translate3d(-3px, 0, 0) translateZ(0);
    }
    75% {
      transform: translate3d(2px, 0, 0) translateZ(0);
    }
    100% {
      transform: translate3d(0, 0, 0) translateZ(0);
    }
  }