html {
    display: flex;
    font-family: Helvetica, Arial, sans-serif;
    border-collapse: separate;
}
.calendar {
    float: left;
    left: 0;
    padding-top: 55px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    width: 60vw;
    background-color: white;
    overflow: hidden;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.month {
    display: flex;
    justify-content: space-between;
    font-weight: bolder;
    font-size: 36px;
    height: 50px;
    align-items: center;
    padding: 12px;
    color: white;
    background-color: rgb(0, 41, 48);

}

.arrow {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 24px;
    padding: 6px;
    width: 24px;
    height: 24px;
    color: rgb(0, 41, 48);
    user-select: none;
}

.weekdays {
    display: flex;
    align-items: center;
    font-weight: bold;
    background-color: #BF5700;
    color: white;
    font-size: 20px;
    height: 50px;
}

.day {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 10vw;
}

.days {
    display: flex;
    flex-direction: column;
    height: 60vh;
}

.week {
    display: flex;
    height: 10vh;
    justify-content: center;
    align-items: center;
    width: 60vw;
    font-weight: bold;
    font-size: 20px;
}

.date {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50vw;
    height: 10vh;
}

.date:hover {
    background-color: rgb(194, 194, 194);
    font-size: 24px;
    color:#BF5700;
}

.eventHeader {
    text-align: center;
    font-size: 20px;
    width: 100px;
    margin: auto;
    margin-top: 10px;
    padding: 5px;
    border-bottom: 2px solid #333F48;
  }
.event{
    float: left;
    width: 300px;
    height: 70px;
    margin-left:30px;
    margin-top: 10px;
    border: 2px solid #333F48;
    text-align: center;
    border-radius: 24px;
    color: white;
    background-color:#333F48 ;

}

.column{
    float: right;
    width: 450px;
    margin-top: 75px;
    margin-left: 30px;
    border: 3px solid #333F48;
    padding-bottom: 20px;
    border-radius: 24px;
    background-color:#BF5700;
}

.upvote{
    float: right;
    color:white;
    width: 50px;
    font-size: 40px;
    text-align: center;
    margin: auto;
    margin-top: 15px;
}

.downvote{
    float:right;
    color: white;
    width:50px;
    font-size: 40px;
    text-align: center;
    margin: auto;
    margin-top: 15px;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color:#bf5700; /*could also use gray #333F48 */
    display: flex;
    flex: 1;
    flex-direction: row;
    color: white;
    justify-content:space-between;
    padding-left: 10px;
    align-items: center;

}

.navbtn {

    font-size: 16px;
    color: white;
    background-color: #333F48;
    height: 40px;
    width: 80px;
    border: white;
    margin-right: 40px;

}