@font-face {
    font-family: "Itim";
    src: url("Itim-Regular.ttf");
}
.pointer {
    cursor: pointer;
}

.close{
    color: white;
}
.open{
    color: #ffca39;
}
.advent-item {
    font-size: 120px;
    padding: 30px;
    font-family: 'Itim';
    min-height: 200px;
    border-radius: 20px;
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: right center;
    text-align: left;
}
.advent-item:hover {
    background-color: rgba(0,191,99,1)!important;
}
body {
    font-family: 'Itim';
    background: linear-gradient(0deg, rgba(0,191,99,1) 0%, rgba(0,96,91,1) 100%);
    margin: 15px;
    padding: 0;
    background-repeat: repeat;
    background-position: center top;
    text-align: center;
}
@media (min-width: 1024px) {
    #advent-calendar {
        max-width: 80%;
        margin: 0 auto;
    }
}
h1 {
    font-size: 4em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 60px;
    margin-bottom: 60px;
}
#advent-calendar {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.today {
    border: #ffca39 10px solid;
    color: #ffca39;
}
@media (max-width: 1024px) {
    #advent-calendar {
        display: list-item;
    }
}