/* Bas */
@font-face {
        font-family: 'Heavenly Christmas';
        src:
                url('heavenly_christmas.otf')
                format('opentype');
                font-weight: normal;
                font-style: normal;
        }

body {
    margin: 0;
    padding: 0;
    background: #282828; /* Gruvbox dark */
    color: #ebdbb2;      /* Gruvbox light text */
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
}

/* Textbehållare */
.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #1c0100;
    border: 6px solid #a60a0a; /* juligare röd accent */
    border-radius: 12px;
    box-sizing: border-box;
}

/* Desktop-bakgrund */
@media (min-width: 768px) {
    body {
        background: #280000 radial-gradient(circle, #3c0000 0%, #1d0000 100%);
    }
}

/* Rubriker */
h1, h2 {
    color: #d64a3a; /* julig röd accent */
    font-family: "Heavenly Christmas", serif;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.4rem;
}
h2 {
    font-size: 1.8rem;
}

/* Brödtext */
p {
    margin: 1rem 0;
    font-size: 1.05rem;
}


/* Länkar */
a {
    color: #fabd2f; /* gruvbox gul */
    text-decoration: underline;
    font-weight: 400;
}

a:hover {
    color: #d79921;
}

/* Mobiljusteringar */
@media (max-width: 767px) {
    .container {
        border-width: 4px;
        border-radius: 8px;
        padding: 1.2rem;
    }

    h1 {
        font-size: 2rem;
    }
}

