header {
    font-family: "Pixelify Sans";
}

main {
    font-family: "Pixelify Sans";
}

footer {
    font-family: "Pixelify Sans";
}

img {
    width: 40px;
    height: 40px;
}

.actions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    width: 80%;
    max-width: 1000px;
    margin-top: 40px;
}

.action-card {
    background: #ffffffd8;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform .2s ease, box-shadow .2s ease;
}

.action-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.action-card h3 {
    margin-top: 0;
    font-size: 1.3em;
}

.action-card p {
    margin: 10px 0 15px;
}

.action-card a {
    display: inline-block;
    padding: 8px 15px;
    background: #4f8f46;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

.action-card a:hover {
    background: #3a6c35;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-image: url('/assets/Zelda1WorldMadDecored.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}