@font-face {
    font-family: Jeju;
    src: url(JejuMyeongjo-Regular.ttf);
}
html, body {
    font-family: 'Jeju', sans-serif;
    background-color: #232323;
    color: #ffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
a{
    text-decoration: none;
}
a:link{
    text-decoration: none;
}
a:visited{
    text-decoration: none;
}
h1{
    font-size: 35pt;
    margin: 2%;
}
h1:hover{
    color: lightgrey;
}
h1 a{
    text-decoration: none;
    color: #FFFFFF;
}
.container {
    text-align: center;
}
#title{
    flex-basis: 75%;
    text-align: left;
}
#navbar{
    margin-top: 2%;
    display: flex;
    align-items: center;
    justify-content: right;
}
#buttons{
    display: flex;
    flex-direction: column;
    margin-right: 8%;
}
button{
    border-radius: 5px;
    background-color: #232323;
    color: #FFFFFF;
    outline: #FFFFFF;
    width: 75px;
    height: 35px;
    margin: 7%;
    font-family: "Jeju";
}
button:hover{
    background-color: #1a1a1a;
    color: white;
}
.calendar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
.arrow {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
}
.month {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: capitalize;
}
#calendar-holder{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 4%;
    margin-top: -2%;
}
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 1px;
    background-color: #333;
    padding: 1rem;
    margin-top: none;
    justify-content: center;
    align-items: center;
    justify-self: center;
    align-self: center;
}
.day-names {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 1px;
    background-color: #333;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.day-names span {
    text-align: center;
}
#calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 1px;
    background-color: #333;
    padding: 1rem;
}
.insights {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
}
.calendar-cell {
    background-color: #1a1a1a;
    min-height: 50px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
h5{
    margin-bottom: none;
    padding-bottom: none;
}