/* this is universal padding and margin */
* {
    margin: 0;
    padding: 0;
}

/* this is more like the utility class */
section {
    font-family: 'Cambay', sans-serif;
}

/* styling to the header */
header {
    font-family: 'Arvo', serif;
    text-align: center;
    font-weight: bold;
    font-size: 5rem;
    background-color: black;
    color: white;
}

/* styling to the main calendar section */
#calendar {
    height: 710px;
    width: 600px;
    /* border: 2px solid red; */
    margin: auto;
}

#clock {
    padding-top: 20px;
    font-weight: bold;
    font-size: 20px;
}

#date {
    padding-top: 10px;
    font-weight: bold;
    font-size: 25px;
}

#date-button-section {
    padding-top: 10px;
    font-weight: bold;
    font-size: 20px;
    width: 200px;
}

#up-button {
    position: relative;
    margin-left: 230px;
    width: 70px;
    height: 30px;
    border-radius: 10px;
    border: none;
    color: white;
    background-color: black;
}

#down-button {
    position: relative;
    margin-left: 7px;
    width: 70px;
    height: 30px;
    border-radius: 10px;
    border: none;
    color: white;
    background-color: black;
}

#table {
    padding-top: 20px;
}

td {
    border: 2px solid rgb(196, 185, 185);
    font-size: 20px;
    height: 55px;
    width: 90px;
    text-align: center;
    border-radius: 5px;
}

th {
    font-size: 25px;
    text-align: center;
}

tr {
    border: 2px solid black;
}

/* selection button styling */
form{
    padding-top: 15px;
}
.selection-button{
    background-color: black;
    color: white;
    border-radius: 10px;
    padding: 10px;
    width: 263px;
    text-align: center;
}

/* styling to the footer */
footer {
    background-color: black;
    color: white;
    text-align: center;
    font-family: 'Arvo', serif;
    height: 23px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}


