p, h1, h2{
    color:white
  }



.event:hover{
    zoom: 1.2;
}




.prog{
    padding-top: 6%;
}

.month-year{
    margin-left: 20px;
    font-size: larger;
}


.prog h1{
    width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 4px 16px 0;
  background-color: rgb(237, 145, 33, 0.7);
  border-radius: 50px;
}

.navtop h2 {
    font-size: 30px;
    width: 1200px;
    height: 95px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 4px 16px 0;
    background-color: rgb(237, 145, 33, 0.7);
    border-radius: 50px;
    margin-top: -8%;
  }

.navtop {
    padding-bottom: 5%;
    padding-top: 8%;
    background-color: #2c1064;
    height: 60px;
    width: 100%;
    border: 0;
}
.navtop div {
    display: flex;
    margin: 0 auto;
    width: 800px;
    height: 100%;
}
.navtop div h1, .navtop div a {
    display: inline-flex;
    align-items: center;
}
.navtop div h1 {
    flex: 1;
    font-size: 24px;
    padding: 0;
    margin: 0;
    color: #ebedee;
    font-weight: normal;
}
.navtop div a {
    padding: 0 20px;
    text-decoration: none;
    color: #c4c8cc;
    font-weight: bold;
}
.content {
    width: 800px;
    margin: 0 auto;
}


body {
    background-image: url('/images/bkgr.png');
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.calendar {
     background-image: url('/images/bkgr.png');
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
}
.calendar .header .month-year {
    font-size: 20px;
    font-weight: bold;
    color: #ed9121;
    padding: 20px 0;
}
.calendar .days {
    display: flex;
    flex-flow: row wrap;
}
.calendar .days .day_name {
    color: white;
    width: calc(100% / 7);
    border-right: 1px solid #a089ce;
    padding: 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    background-color: #5c3a93;
}
.calendar .days .day_name:nth-child(7) {
    border: none;
}
.calendar .days .day_num {
    display: flex;
    width: calc(100% / 7);
    border-right: 1px solid #e6e9ea;
    border-bottom: 1px solid #e6e9ea;
    padding: 25px;
    font-weight: bold;
    color: #7c878d;
    cursor: pointer;
    min-height: 200px;
}
.calendar .days .day_num span {
    display: inline-flex;
    width: 30px;
    font-size: 13px;
}
.calendar .days .day_num .event {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    padding: 3px 6px;
    border-radius: 4px;
    background-color: #ed9121;
    color: #fff;
    word-wrap: break-word;
}