@font-face {
    font-family: 'MontBold'; /*a name to be used later*/
    src: url('../fonts/Montserrat-Bold.ttf') format("truetype"); /*URL to font  /fonts/Montserrat/Montserrat-Medium.ttf     */
    font-display: swap;
}

@font-face {
    font-family: 'MontMed'; /*a name to be used later*/
    src: url('../fonts/Montserrat-Medium.ttf') format("truetype"); /*URL to font  /fonts/Montserrat/Montserrat-Medium.ttf     */
    font-display: swap;
}
@font-face {
    font-family: 'MontReg'; /*a name to be used later*/
    src: url('../fonts/Montserrat-Regular.ttf') format("truetype"); /*URL to font  /fonts/Montserrat/Montserrat-Medium.ttf     */
    font-display: swap;
}
@font-face {
    font-family: 'MontLite'; /*a name to be used later*/
    src: url('../fonts/Montserrat-Light.ttf') format("truetype"); /*URL to font   /fonts/Montserrat/Montserrat-Light.ttf  */
    font-display: swap;
}



@media only screen and (max-width: 650px) {
  h2 {
  
  font-size: 1.75rem! important;
  }
  
  h3 {
  font-size: 1.25rem! important;
  
  }
  
  .credits {
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    font-size: 14px;
  }
  
}






p, body {
	font-family: 'MontBold';
	color: #ffffff;
}


::selection {
    background-color: #F45151;
    color: #ffffff;
}



@-webkit-keyframes pulse {
      0% {background-color: #9933ff;}
     25% {background-color: #6600ff;}
     50% {background-color: #3333cc;}
     75% {background-color: #3333ff;}
     100% {background-color: #0099ff;}
}
 
body {
     background-color: #45CEEF;    
     -webkit-animation: pulse 40s infinite alternate;
 
}


body {
    margin: 0px;	
    background-color: #2e3033ff;
    
}

labels {
    font-family: 'MontLite';
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

ul{
  margin-top: 10px;
  padding: 0;
  margin-top: 50px;
  margin-bottom: 50px;
  align-items: center;
}


li {

list-style-type: none;

}

h2 {
	text-align: center;
	margin: 0px;

}


h3 {
    text-align: center;
	font-family: 'MontReg';
	padding-bottom: 20px;
	opacity: 0.5;

}


button {
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
}


.explore {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    border-radius: 30px;
    background-color: #F45151;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 17px;
    padding: 10px;
    width: 180px;
    transition: all 0.5s;
    cursor: pointer;
    letter-spacing: 1.1;
}


.explore span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.explore span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
  vertical-align: middle;
}

.explore:hover span {
  padding-right: 25px;
}

.explore:hover span:after {
  opacity: 1;
  right: 0;
}


.explore:active {
  background-color: #F9D023;
}

.credits {
    font-family: 'MontReg';
	position: fixed;
	bottom: 20px;
    right: 30px;
    opacity: 0.5;
}


  a:link {
        color: white;
        opacity: 1! important;
      }
      /* visited link */
      a:visited {
        color: white;
      }
      /* mouse over link */
      a:hover {
        color: white;
      }
      /* selected link */
      a:active {
        color: white;
      }
