/* -------------------------
   TW3NTY Promotions v2
--------------------------*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#111;

    font-family:'Montserrat',sans-serif;

    color:#fff;

    min-height:100vh;

    display:flex;

    flex-direction:column;

}

/* -------------------------
   Header
--------------------------*/

header{

    background:#000;

    padding:45px 20px;

    text-align:center;

    border-bottom:4px solid #c7a64a;

}

.logo{

    width:260px;

    max-width:80%;

}

header h1{

    margin-top:25px;

    font-size:28px;

    font-weight:300;

    letter-spacing:6px;

    color:#fff;

}

/* -------------------------
   Main
--------------------------*/

main{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:50px 20px;

}

/* -------------------------
   Card
--------------------------*/

.card{

    width:100%;

    max-width:700px;

    background:#1b1b1b;

    border-radius:20px;

    border:2px solid #c7a64a;

    padding:50px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

/* -------------------------
   Loading Spinner
--------------------------*/

.spinner{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border:6px solid #333;

    border-top:6px solid #c7a64a;

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    from{transform:rotate(0deg);}

    to{transform:rotate(360deg);}

}

/* -------------------------
   Typography
--------------------------*/

h1{

    font-size:48px;

    margin:20px 0;

    font-weight:800;

}

h2{

    font-size:30px;

    margin-bottom:20px;

}

h3{

    color:#c7a64a;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;

}

p{

    color:#ddd;

    font-size:18px;

    line-height:1.7;

}

/* -------------------------
   Voucher
--------------------------*/

.voucher-label{

    margin-top:35px;

    color:#c7a64a;

    letter-spacing:3px;

    text-transform:uppercase;

}

#voucherCode,
#voucherNumber{

    font-size:36px;

    font-weight:800;

    margin:25px 0;

    color:#fff;

    letter-spacing:4px;

}

/* -------------------------
   QR Code
--------------------------*/

#voucherQR,
#voucherQRCode{

    width:230px;

    height:230px;

    margin:35px auto;

    background:#fff;

    padding:20px;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

}

/* -------------------------
   Buttons
--------------------------*/

button{

    background:#c7a64a;

    color:#000;

    border:none;

    padding:18px 34px;

    border-radius:10px;

    font-weight:700;

    font-size:17px;

    cursor:pointer;

    margin:10px;

    transition:.25s;

    text-transform:uppercase;

    letter-spacing:2px;

}

button:hover{

    transform:translateY(-2px);

    background:#d8b95d;

}

.button-group{

    margin-top:35px;

}

/* -------------------------
   Hidden
--------------------------*/

.hidden{

    display:none;

}

/* -------------------------
   Footer
--------------------------*/

footer{

    background:#000;

    padding:35px;

    text-align:center;

    border-top:3px solid #c7a64a;

}

footer p{

    color:#999;

    margin-bottom:12px;

}

.footer-links{

    margin-top:20px;

}

.footer-links a{

    color:#c7a64a;

    text-decoration:none;

    margin:0 15px;

    font-weight:600;

}

.footer-links a:hover{

    color:white;

}

/* -------------------------
   Mobile
--------------------------*/

@media(max-width:768px){

.card{

padding:35px 20px;

}

header h1{

font-size:20px;

letter-spacing:3px;

}

h1{

font-size:34px;

}

#voucherCode,
#voucherNumber{

font-size:26px;

}

button{

width:100%;

margin:8px 0;

}

.button-group{

display:flex;

flex-direction:column;

}

}