/* CSS Resets */

h1, h2, h3, h4, p, nav ul {
    padding: 0;
    margin: 0;
}
nav ul {
    list-style-type: none;
}
img { display: block; }
* { box-sizing: border-box;}
/*-----end reset------------*/

body{
    background-color: #E5DADA;
    padding: 0 20px;
}

.container {
    max-width: 1000px;
    margin: auto;
    background-color: #840032;
}

header{
    background-image: url("images/cover.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 300px;
    width: auto;
}

#title{
    display: block;
    margin-right: auto;
    margin-left: auto;
}

#navbar{
    position: sticky;
    top: 0;
    background-color: rgba(151, 152, 153, .6);
    margin-bottom: 50px;
    padding: 10px;
    z-index: 1;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
}

nav ul li a {
    color:white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2vw;
}

#about{
    display: flex;
    justify-content: space-evenly;
}

#about p{
    width: 45%;
    background-color: #707070;
    padding: 10px;
    color: white;
}

#about img{
    width: 45%;
    position: relative;
    top: 40px;
}

#calendar{
    margin-top: 70px;
    padding-bottom: 40px;
    margin: center;
}

#table{
    margin: auto;
}

#calendar h2 img{
    margin: auto;
    width: 20%;
    height: auto;
}

#calendar td{
    padding: 3vw;
}
