:root  {
    --month-color: #c74c43;
    --light-red: #fae2d2;
    --calendar-font: futura
}

@font-face {
    font-family: month-font;
    src: url(../fonts/LatoWeb-Bold.ttf);
}

@font-face {
    font-family: year-font;
    src: url(../fonts/LatoWeb-Bold.ttf);
}

@font-face {
    font-family: day-font;
    src: url(../fonts/LatoWeb-Bold.ttf);
}

@font-face {
    font-family: description-font;
    src: url(../fonts/LatoWeb-Regular.ttf);
    font-style: normal;
}

@font-face {
    font-family: description-font;
    src: url(../fonts/LatoWeb-BoldItalic.ttf);
    font-style: italic;
}

.tables-container {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}

.year {
    font-family: year-font;
    text-align: center;
    font-size: 80px;
    line-height: 100px;
    height: 90px;
    padding: 30px 0 10px 0;
}

.logo {
    position: absolute;
    width: 300px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%) translate(400px, 40px);
}

table {
    flex: 0 0 300px;
    border-spacing: 0;
}

/* top of month column with month name */
table tr:first-of-type th {
    color: white;
    font-family: month-font;
    text-align: center;
    background-color: var(--month-color);
    height: 10px;
    font-size: 40px;
    padding: 5px 0 0 0;
    border-radius: 10px 10px 0 0;
}

/* bottom of month column */
table tr:last-of-type th {
    border-radius: 0 0 10px 10px;
    background-color: var(--month-color);
    height: 10px;
}

td {
    border-color: var(--month-color);
}

/* day */
table td:nth-child(1) {
    background-color: var(--light-red);
    font-family: day-font;
    color: #c74c43;
    font-size: 20px;
    width: 35px;
    text-align: center;
    padding: 2px 0 0 0;
    border-style: solid none solid solid;
    border-width: 1px 2px 1px 2px;
}

/* event description */
table td:nth-child(2) {
    background-color: white;
    font-family: description-font;
    font-size: 16px;
    line-height: 18px;
    padding: 6px 5px 5px 5px;
    border-style: solid solid solid none;
    border-width: 1px 2px 1px 2px;
}