* {
    margin: 0;
}

body {
    width: 91%;
    max-width: 91%;
    height: 90%;
    justify-self: center;
    font-family: Knewave, Verdana, Geneva, Tahoma, sans-serif;
    letter-spacing: 1px;
}

nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    background-color: #1c5253;
    margin: 30px 0 0;
    height: 60px;
    
}

nav h2.shortcut {
    font-weight: 200;
    width: 100%;
    color: #e6dbdb;
    text-align: left;
    padding:10px 0 10px 50px;
}

nav h2.shortcut:hover{
    cursor: pointer;
    background-color: rgba(255,255,255,0.1);
}

nav img.left-arrow-month {
    height: 50%;
    padding: 14px;
    opacity: .5;
}

nav img.left-arrow-month:hover{
    cursor: pointer;
    opacity: 1;
}

nav h1.month-name {
    color: #e6dbdb;
    font-weight: 200;
    font-size: 24px;
    padding: 10px 0;
}

nav img.right-arrow-month {
    height: 50%;
    padding: 14px;
    opacity: .5;
}

nav img.right-arrow-month:hover {
    cursor: pointer;
    opacity: 1;
}

nav h2.show-year {  
    width: 100%;
    color: #e6dbdb;
    text-align: right;
    padding: 10px 40px 50px 0;
    font-weight: 200;
    letter-spacing: 1px;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 40px;
}

table th,td {
    width: 13%;
    color: black
}

table th {
    height: 30px;
    font-size: 18px;
}

table td {
    height : 100px ;
    border: 5px double rgba(3, 39, 40, 0.4);
    padding-right: 10px;
    font-size: 28px;
    text-align: right;
    vertical-align: bottom;
}


table td.top-row {
    border-top: none;
}

table td.left-col , th:first-of-type{
    border-left: none;
    color: #ed0707;
}

table td.bottom-row {
    border-bottom: none;
}

table td.right-col {
    border-right: none;
}

table td.today {
    background-color:rgba(59, 18, 102, 0.35);
    
}