*{
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

body{
    margin: 0px;

    background-color: rgb(30, 30, 30);

    font-family: 'Courier New', Courier, monospace;

    text-align: center;

    color: white;

    overflow-x: hidden;
}

h1{
    text-shadow: 5px 5px black;
}

.roll_button{
    background-color: rgba(200, 200, 200);

    border-color: rgb(150, 150, 150);
    border-style: solid;
    border-width: 5px;
    border-radius: 5px;

    box-shadow: 10px 10px black;

    width: 350px;
    height: 100px;
    font-size: 40px;
    font-family: 'Courier New', Courier, monospace;
    
    position: absolute;
}

.button_1{
    transform: translate(-50%, 270px);
}

.button_2{
    transform: translate(-50%, 390px);
}

.button_3{
    transform: translate(-50%, 510px);
}

.random_pick{
    position: fixed;

    transform: translate(-50%, 50px);

    background-color: rgb(60, 60, 60);
    
    width: min(500px, 95vw);
    height: min(500px, 95vw);

    background-color: rgb(70, 70, 70);

    border-radius: 10px;

    box-shadow: 10px 10px rgba(0, 0, 0, 0.5);
}

.tickets{
    position: absolute;

    transform: translate(50vw, 175px) translate(-50%, -50%);
}

.clicker{
    position: absolute;

    transform: translate(50vw, 75px) translate(-50%, -50%);

    width: 150px;
    height: 150px;

    font-size: 100px;

    border-style: solid;
    border-color: white;
    border-width: 5px;
    border-radius: 150px;
}

.title{
    font-size: 3em;

    text-shadow: 5px 5px black;
}

.collection{
    position: absolute;

    transform: translate(50vw, 650px) translate(-50%, 0);

    width: min(1000px, 90vw);

    padding: 10px;

    border-left-style: solid;
    border-right-style: solid;
    border-color: white;
    border-width: 1px;

    text-align: left;
}

/* w3schools css */

/* The switch - the box around the slider */
.switch {
    display: inline-block;
    width: 60px;
    height: 34px;

    position: absolute;

    transform: translate(-50%, 225px) translate(-95px);
  }
  
  /* Hide default HTML checkbox */
  .switch .check_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;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .check_input:checked + .slider {
    background-color: #2196F3;
  }
  
  .check_input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  .check_input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }