@font-face {
    font-family: 'Naga';
    src: url('Gucci.ttf');
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Gucci';
}

.content {
    width: 100%;
    height: 100vh;
    background: url('background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
}

.content .texts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    /* padding: 16px;
    background-color: black;
    border-radius: 12px; */
}

.content .texts p {
    color: #f5e38f;
    font-size: 32px;
    font-weight: 400;
    -webkit-text-stroke: 5px black;
    paint-order: stroke fill;
    text-align: center;
}

.golden-button {
    touch-action: manipulation;
    display: flex;
    align-items: center;
    outline: none;
    font-family: inherit;
    font-size: 1em;
    box-sizing: border-box;
    border: none;
    border-radius: 0.3em;
    height: 100px;
    line-height: 2.5em;
    text-transform: uppercase;
    padding: 0px 50px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
      inset 0 -2px 5px 1px rgba(139, 66, 8, 1),
      inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
    background-image: linear-gradient(
      160deg,
      #a54e07,
      #b47e11,
      #fef1a2,
      #bc881b,
      #a54e07
    );
    border: 1px solid #a55d07;
    color: rgb(120, 50, 5);
    text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-size: 100% 100%;
    background-position: center;
    font-size: 32px;
    animation: blink 1s infinite;
    transition: all 0.2s;
}
  
.golden-button:hover {
    transform: scale(1.05);
}

@keyframes blink {
    0% {
        background-size: 100% 100%;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
        inset 0 -2px 5px 1px rgba(139, 66, 8, 1),
        inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
        border: 1px solid #a55d07;
        color: rgb(120, 50, 5);
    }
    50% {
        background-size: 150% 150%;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23),
          inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
        border: 1px solid rgba(165, 93, 7, 0.6);
        color: rgba(120, 50, 5, 0.8);
    }
    100% {
        background-size: 100% 100%;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
        inset 0 -2px 5px 1px rgba(139, 66, 8, 1),
        inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
        border: 1px solid #a55d07;
        color: rgb(120, 50, 5);
    }
}

@media screen and (max-width: 450px) {
    .content {
        background: url('bgMobile.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
    }
    .content .texts p {
        font-size: 20px;
    }
}