*{
    margin: 0; padding: 0; border: 0;box-sizing: border-box;
    text-decoration: none;
    font-family:'Pacifico', cursive;
}
body {
    background-color: #000000;
    color: #333;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(../Images/lasse-bergqvist-TYj7ey6xn9M-unsplash.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.calendar {
    background-color: #ffffff4d;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 80vw;
    padding: 20px;
}

.month-year {
    text-align: center;
    color:white
}

.month-year h2 {
    font-size: 32px;
    margin: 0;
}

.next-month {
    display: block;
    margin-top: 10px;
    text-align: center;
}


table {
    margin-top: 20px;
    width: 100%;
    background-color: black;
}

th {
    
    font-size: 16pt;
    padding: 10px;
    text-align: center;
    background-color: rgb(119, 113, 113);
    color: white;
}

td {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

.event {
    padding: 10px;
}

.event a {
    color: #333;
    text-decoration: none;
}

tr > td {
    border-radius: 5px;
    height: 200px;
    width: 100px;
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(to bottom, rgb(219, 216, 216) , rgba(224, 224, 220, 0));
}

.event-image img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}
.blues > h1 {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-10%, -70%);
    color: rgb(5, 255, 222);
    z-index: 1;
}
.livemusic> h1 {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-70%, -49%);
    color: rgb(0, 0, 0);
    z-index: 1;
}
.karaoke > h1 {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-10%, -40%);
    color: rgb(66, 197, 105);
    z-index: 1;
}
footer{
    margin: 20px 0px 20px 20px;
    z-index: 1;
}
footer>nav{
    margin-top: 25px;
}
footer>nav>a{
    border: solid black 2px;
    color: black;
    background-color: rgba(255, 255, 255, 0.548);
    padding: 10px 10px;
    border-radius: 15px;
}
footer>nav>a:hover {
    background-color: black;
    color: white;
    transform: rotate(3deg);
}