@font-face {
    font-family: "Arial";
    src: url(/fonts/Arial.ttf);
}

@font-face {
    font-family: "ArialBold";
    src: url(/fonts/ArialBold.ttf);
}

@font-face {
    font-family: "Geologica";
    src: url(/fonts/Geologica.ttf);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

html, body {
    overflow-x: hidden;
    background-color: #1e161a;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 18px;
}

:focus {
    outline: none; 
}

/* :focus {
    outline: 1px solid #ca5f86;
    outline-offset: 2px;
    border-radius: 6px;
} */

button {
    background-color: #ca5f86;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 18px;
}

button:hover {
    background-color: #aa5172;
}

a {
    text-decoration: none;
    color: #ffffff;
}

.hidden {
    visibility: hidden;
    opacity: 0;
}

.full-hidden {
    display: none !important;
}

.header-button {
    background: none;
    text-decoration: none;
    border: none;
    padding: 0;
    color: #ffffff;
    cursor: default;
    font-size: 18px;
}

.header-button:hover {
    background: none;
}

.popup-button {
    z-index: 10;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease-in, transform 0.3s ease-out;
}

.grow {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 425px) {
    button {
        font-size: 14px;
    }
}
