@font-face
{
	font-family: gL;
	src: url( gothamlight.otf);
}

HTML{font-size: calc(2*(1vh+1vw))}

h1
{
	font-family: gL;
	margin-top: 30px;
}

h2
{
	font-family: gL;
}

 .link-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFEA00;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s;
    color: #000000;
  }

  .link-button:hover {
    background-color: #FFD700;
  }

.button-overlay {
    position: relative;
    display: inline-block;
}
.button-overlay button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
