@import url('https://fonts.googleapis.com/css2?family=Joti+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jockey+One&family=Joti+One&display=swap');


.title {
    text-shadow:
    -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    position: absolute;
    top: 7vh;
    left: 37vw;
    color: #db0101;
    font-size: 40px;
    font-family: Joti One;
    font-weight: 400;
    line-height: 40px;
    word-wrap: break-word ;
    
}

.combo {
    position: absolute;
    top: 15vh;
    left: 39vw;
}

input {
    width: 37%;
    background: rgb(255, 238, 238);
    border: none;
    padding: 15px 20px;
    border-radius: 20px;
    margin-top: 15px;
    box-shadow: #ff3737 0px 10px 10px -5px;
    border-inline: 2px solid transparent;
}

input:focus {
    outline: none;
    border-inline: 5px solid #b60101;
}

button {
    
    padding: 0.8em 1.8em;
    border: 2px solid #870000;
    border-radius: 17px;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    transition: .3s;
    z-index: 1;
    font-family: monospace;
    color: #ff0000;
    transition: background-color 0.7s ease;
}

.hover-button::after {
    
    background-color: #ff0000;
}

button::before {

    content: '';
    width: 0;
    height: 300%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #b31b00;
    transition: 0.7s ease;
    display: block;
    z-index: -1;
}

button:hover::before {
    width: 100%;
}

button:hover {
    color: #111;
}



.QrBox {
    font-family: jockey One;
    position: absolute;
    top: 30vh;
    left: 40vw;
    text-align: center;
    width: 255px;
    height: 255px;
    background: #D9D9D9;
    border: 2px solid black;
    border-radius: 10%;
}

