@font-face {
    font-family: Amarante;
    src: url("../fonts/amarante.woff2") format("woff2"),
        url("../fonts/amarante.woff") format("woff");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Amarante;
}

body {
    background: linear-gradient(to right, #145c2c, #3d550c);
}

#root {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    margin-bottom: 20px;
}

a {
    font-family: Amarante;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #9a7e0c;
    border: solid 4px #776a1f;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
    animation: pulse 1.3s infinite;
    font-variant-caps: all-petite-caps;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

a:hover {
    background-color: #ffd700;
    color: #3d550c;
    transform: scale(1.08);
}

a:active {
    background-color: #ff7e5f;
    color: #fff;
    transform: scale(0.98);
}
