a {
    right: 30px;
    text-decoration: none;
    color: #0056b3;
    font-size: 18px;
    font-family: 'Outfit', Arial, sans-serif;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 100;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #f0f0f0;
    color: #003d80;
}

.top-right-link {
    position: fixed;
    top: 20px;
    right: 30px;
    text-decoration: none;
    color: #0056b3;
    font-size: 18px;
    font-family: 'Outfit', Arial, sans-serif;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 100;
    transition: background-color 0.3s ease;
}

.top-right-link:hover {
    background-color: #f0f0f0;
    color: #003d80;
}

h1 {
    font-family: 'Outfit', Arial, sans-serif;
    color: black;
    margin-bottom: 20px;
    margin: 10px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

@font-face {
    font-family: 'Outfit2';
    src: url('BowlbyOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal
}

@media (max-width: 600px) {
    button {
        max-width: 90vw;
        width: auto;
        font-size: 18px;
        padding: 12px 0;
        min-width: 120px;
    }

    .top-right-link {
        top: 10px;
        right: 10px;
        font-size: 16px;
        padding: 6px 12px;
    }
}


