*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: black;
    color: gold;
    text-align: center;
    height: 100%;
    position: relative;
}

a{
    color: orangered;
}

a:hover{
    color: yellow;
}

hr{
    border-color: gold;
}

/*Sidenav stuff*/

.sidenav{
    float: left;
    position: absolute;
    width: 30%;
    height: 100%;
    padding: 10px;
    top: 0;
    border-right-style: solid;
    border-color: gold;
    color: gold;
    text-align: center;
}

.homeButtonDiv{
    width: 100%;
    text-align: center;
}

.homeButton{
    background-color: black;
    border-style: solid;
    border-color: gold;
}

.homeButton:hover{
    border-color: orangered;
}

.sidenav a{
    color: gold;
    text-decoration: none;
}

.sidenav a:hover{
    color: orangered;
}

.navList{
    font-weight: bold;
    font-size: larger;
    line-height: 2em;
}

.navButton{
    background-color: black;
    color: gold;
    border-style: none;
}

.navButton:hover{
    color: orangered;
}

/*Media Buttons*/

.mediaButtons{
    position: fixed;
    right: 0;
    top: 30%;
}

/*Main Body*/

.mainBody{
    margin-left: 30%;
}

/*Index components*/

#mainIndexTitle{
    margin-top: 10px;
}

.mainIndexContent{
    margin-left: 30%;
}

/*Calendar components*/

.homeButtonCalendar{
    margin-top: 10px;
}

.container{
    float: left;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: black;
    color: gold;
    border-style: solid;
    border-color: gold;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.calendar{
    width: 95%;
    height: 95%;
    border-style: solid;
    border-color: gold;
}

.month{
    width: 100%;
    height: 20%;
    background-color: gold;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.month i{
    font-size: 2.5rem;
    cursor:pointer;
}

.month i:hover{
    color: orangered;
}

.month h1{
    font-weight: 400;
    text-transform:uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
}

.month p{
    font-size: 1.6rem;
}

.weekdays{
    width: 100%;
    height: 5rem;
    padding: 0 0.4rem;
    display: flex;
    align-items: center;
}

.weekdays div{
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0;
    width: calc(95%/7);
    margin: 0.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.days{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0.2%;
}

.days div{
    font-size: 1.4rem;
    margin: 0.6%;
    width: calc(95%/7);
    height: 5rem;
    margin: 0.2%;
    display: flex;
    justify-content: center;
    border-style: solid;
    transition: background-color 0.2s;
    font-size: smaller;
}

.days div:hover:not(.prevDate, .nextDate){
    background-color: goldenrod;
    color: black;
}

.prevDate, .nextDate{
    border-color: gray;
    color: gray;
}

.today{
    background-color: gold;
    color: black;
}

/*Song list components*/

.theList ul{
    list-style: none;
}

.theList a{
    text-decoration: none;
    color: gold;
}

.theList a:hover{
    color: orangered;
}

/*Prices components*/

.pricesBody{
    align-items: center;
}

.pricesBody table{
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    border-collapse: collapse;
}

.pricesBody th, td{
    border-style: solid;
    border-color: gold;
    padding: 3px;
}

.pricesBody h4{
    text-align: left;
    margin-left: 30px;
}

.pricesBody ul{
    text-align: left;
    margin-left: 70px;
}

/*Contact Me Componente*/

.emailAndTel{
    text-align: left;
    margin-left: 20px;
}

#contactMeForm{
    text-align: left;
    margin-left: 20px;
}

#contactMeForm textarea{
    width: 40%;
    height: 60px;
}

#contactMeForm button{
    margin-left: 20px;
    width: 35%;
    height: 30px;
    border-color: gold;
    border-width: 3px;
}

#contactMeForm button:hover{
    border-color: orangered;
}



