/* General body styling */
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #26606d;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

h1, h2 {
    text-align: center;
    margin: 10px 0;
}

h1 {
    font-family: 'Brusher', cursive;
    font-size: 2.5em;
}

h1 a {
    color: #fff;
    text-decoration: none;
}

h2 {
    font-family: 'Gloria Hallelujah', cursive;
    font-size: 1.2em;
    font-style: italic;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advent-calendar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    max-width: 800px;
}

.advent-day {
    width: 120px;
    height: 120px;
    background-color: #26606d;
    border: 2px solid #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
    position: relative;
    color: #fff;
}

.advent-day.disabled {
    background-color: #ccc;
    color: #666;
    pointer-events: none;
}

.advent-day:hover:not(.disabled) {
    background-color: #3b868f;
}

.advent-day .title {
    font-size: 18px;
}

.advent-day .subtitle {
    font-size: 12px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 80%;
}

.elf {
    position: absolute;
    width: 150px;
}

footer {
    background-color: #1d4f56;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: underline;
}


/* Elves Styling */
.elf {
    position: absolute;
    width: 100px;
}

.elf.top-left {
    top: 20px;
    left: 10px;
}

.elf.top-right {
    top: 20px;
    right: 10px;
}