* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    color: #ffffff;
    font-family: 'Montserrat';
}
#timer_button {
    display:none;
}
#gradient-canvas {
    width:100%;
    height:100%;
    --gradient-color-1: #ef008f; 
    --gradient-color-2: #6ec3f4; 
    --gradient-color-3: #7038ff;  
    --gradient-color-4: #ffba27;
  }

 /* Customize the label (the container) */
 .radio-button {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Montserrat';
    margin: 2em;
  }
  
  /* Hide the browser's default checkbox */
  .radio-button input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border: 1px solid #fff;
  }
  
  /* On mouse-over, add a grey background color */
  .radio-button:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .radio-button input:checked ~ .checkmark {
    background-color: transparent;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .radio-button input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .radio-button .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  } 
p {
    font-family: 'Montserrat';
    margin-top: 0;
    margin-bottom: 2em;
}

h1 {
    font-size: 2rem;
    font-weight: 100;
    margin-top: 2em;
    font-family: 'Montserrat';
    text-align: center;
    display: block;    
}
h2 {
    font-size: 50px;
    font-weight: 100;
    margin-top: 2em;
    margin-bottom: 0.5em;
    font-family: 'Montserrat';
}
h3 {
    font-family: 'Montserrat';
    font-weight: 100;
}
strong {
    font-weight: bold;
}


.button {
    letter-spacing: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: width .3s, color .3s;
    color: #fff;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    position: relative;
    transition-property: color;
    transition-duration: 0.3s;
    padding: 15px 30px 15px 30px;
    border: 1px solid #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: 'Montserrat';
    display: inline-block;
    margin: 2em;
}

.button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.button:hover,
.button:focus {
    transition-duration: 0.3s;
    color: #1E2028;
}

.button:hover::before,
.button:focus::before {
    transform: scaleX(1);
}

#wrapper {
    display: flex; 
    align-items: center;
    justify-content: center; 
    text-align: center; 
}

#wrapper-2 {
    padding: 3em 5em;
    max-width: 1300px;
    text-align: center;
    background-color: white;
    margin: 0 auto;
    margin-top: 100;
    color: #1d2123;
    word-break: break-all
}



@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.5;
    }

    75% {
        opacity: 0.76;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/** Basic styles for an animated element */
.m-scene .scene_element {
    animation-duration: 0.65s;
    transition-timing-function: ease-in;
    animation-fill-mode: both;

}

/** An element that fades in */
.m-scene .scene_element--fadein {
    animation-name: fadeIn;
}

/** An element that fades in and slides up */
.m-scene .scene_element--fadeinup {
    animation-name: fadeInUp;
}

/** An element that fades in and slides from the right */
.m-scene .scene_element--fadeinright {
    animation-name: fadeInRight;
}