@font-face {
    font-family: "Minecrafter";
    src: url('/static/assets/Minecrafter.ttf');
}

body {
    background-image: url('/static/assets/background2.png');
      background-size: cover;
      height: 100%;
      width: 100%;
}
.body:before {
   content: '';
   position: absolute;
   background-image: linear-gradient(to right, black, white);
   opacity: 2.5; 
   height:100%;
   width:100%;
 }

.mt-big {
    margin-top: 100px;
}

button {
    position: relative;
    background-color: #86AAFF;
    font-weight: bold;
    padding: 0.5em 3em;
    border-radius: 5px;
    font-size: 2.5em;
    font-family: "Minecrafter";
    box-shadow: 0px 5px 0px #ccc;
    border: none;
    color: white;
    text-shadow:
        0px 0px 0 rgb(184,184,184),
        0px 1px 0 rgb(159,159,159),
        0px 2px 0 rgb(134,134,134),
        0px 3px 0 rgb(109,109,109),
        0px 4px 3px rgba(0,0,0,0),
        0px 4px 1px rgba(0,0,0,0.5),
        0px 0px 3px rgba(0,0,0,.2);
    overflow: hidden;
    transition: transform 0.1s, box-shadow 0.1s;
}

@media (max-width: 767px) {
    button {
        font-size: 2em;      /* smaller font */
        padding: 0.3em 1.5em;  /* less padding */
        border-radius: 3px;    /* optional: smaller corners */
        box-shadow: 0px 3px 0px #ccc; /* optional: smaller shadow */
    }
}

button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: all 650ms;
}

button:hover:before {
    left: 100%;
}

button:active {
    transform: translateY(5px);
    box-shadow: 0px 0px 0px #ccc;
    background-color: #6f92e0;
}