@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Special+Elite&display=swap');

body {
    background: url(/public/jungle.png) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: 'Roboto Mono', monospace;
}

.middle {
    background-color: white;
    border: 1px;
    border-style: solid;
    border-color: whitesmoke;
    border-radius: 5px;
}

.title {
    font-family: 'Special Elite', cursive;
}

.btnColor {
    border: 1px;
    border-style: solid;
    border-color: dark;
    color: black;
    text-decoration: none;
}

.btnClaim {
    width: 100%;
    border: 1px;
    border-style: solid;
    border-color: dark;
    color: black;
    text-align: center;
    text-decoration: none;
}

.btnMint {
    width: 100%;
    border: 1px;
    border-style: solid;
    border-color: dark;
    color: black;
    text-align: center;
    text-decoration: none;
}

select {
    width: 100%;
}

/* The switch - the box around the slider */
.switch {
    font-size: 11px;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 1em;
   }
   
   /* Hide default HTML checkbox */
   .switch input {
    opacity: 0;
    width: 0;
    height: 0;
   }
   
   /* The slider */
   .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border: 2px solid #000;
    transition: .4s;
    border-radius: 1px;
   }
   
   .slider:before {
    position: absolute;
    content: "";
    height: 1.3em;
    width: 1.2em;
    border-radius: 2px;
    left: 0.2em;
    bottom: 0.3em;
    background-color: #fff;
    border: 2px solid #000;
    transition: 0.1s;
   }
   
   input:checked + .slider {
    background-color: #000;
   }
   
   input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
   }
   
   input:checked + .slider:before {
    transform: translateX(1.3em);
   }