@font-face {
    font-family: 'Gotham Black';
    src: local('Gotham Black'), local('GothamBlack'),
    url('GothamBlack.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Book';
    src: local('Gotham Book'), local('Gotham-Book'),
        url('Gotham-Book.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

.gthblack {
    font-family: 'Gotham Black';
    font-style: normal;
    font-size: 30px;
}

.gthbook {
    font-family: 'Gotham Book';
    font-style: normal;
    font-size: 30px;
}

.button {
  background-color: #4CAF50; /* Green */
  border: none;
  outline: 0;
  color: white;
  padding: 8px 16px;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  margin: 2px 2px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
  width: 80px;

}
.buttonMOVIL {
    background-color: #4CAF50; /* Green */
    border: none;
    outline: 0;
    color: white;
    padding: 8px 8px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    margin: 2px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    width: 60px;
  
  }
.button1 {
	background-color: white; 
	color: black; 
	font-size: 12px;
	font-family:'Gotham Book;
}

.button1:hover {
	background-color: #008CBA;;
	color: white;
	font-size: 12px;
	font-family: 'Gotham Black';
}

.button2 {
	background-color: #4CAF50;
	color: white;
	font-size: 12px;
	font-family: 'Gotham Black';
  }
  .custom-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: relative;
    top: 50%;
    left: 50%;
    background-color: #3498db;
    color: #fff;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .custom-button:hover .button-text {
    display: inline;
  }

  .button-text {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 10px;
    background-color: #3498db;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px; /* Tamaño de fuente del texto */
  }