* {
    margin: 0;
    padding: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Mozilla+Headline:wght@200..700&display=swap');
body {
    background: #FAF9F6;
    color: black;
    position: relative;
    font-family:"Mozilla Headline";
}

.logo img {
    height: 100px;
    width: 100px;
    filter: invert(1);
}

.none {
    display: none;
}

nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;

}

.nav-links {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 83%;
    justify-content: center;
    flex-wrap: wrap;
}

.links {
    margin: 0 1.5rem;
    font-weight: bold;
    font-size: x-large;
}

.sliderbar img {
    width: 35px;
    height: 35px;
    /* border: 2px solid #999; */
    /* filter: invert(1); */
}

.sliding {
    background: #CFCFCF;
}

nav {
    position: sticky;

}

.sliderbar {
    position: absolute;
    top: 10px;
    right: 10px;
}

.brand-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-img img {
    max-width: 100%;
    margin: 0 66px;
    border-radius: 10px;
    overflow-x: hidden;
}
.sliding{
    height: 90vh;
    width: 20vw;
    position: fixed;
    right: -50%;
    transition: all 0.9s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.right{
    right: 0%;
}
.slid-links{
    
    font-weight: bold;
    font-size: x-large;
    margin: 1rem 0 -1px 16px;
    padding: 0.6rem 0.9rem;
}
.slid-footer{
    position: absolute;
    bottom: 0;
    padding: 1.4rem 0;
}
.slid-links{
    background-color: azure;
    border-radius: 5px;
    width: 40%;
}
.nirvana{
    display: flex;
    width: 100%;
    flex-direction: column;
}
.title{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 18vh;
    font-size: 100px;
}
.past-highlights{
    display: flex;
    width: 100%;
    height: 18vh;
    font-size: 50px;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.time{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: medium;
    column-gap: 1rem;
    flex-direction: column;
}
.highlights {
    background-color: #eeeeee;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: row;
}

.past-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 2rem;
    color: #222;
    margin-bottom: 1.5rem;
}

.events {
    background-color: #fff;
    border: 1px solid #ccc;
    margin: 0.5rem auto;
    width: 60%;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    transition: transform 0.3s;
}

.events:hover {
    transform: scale(1.05);
    background-color: #272727;
    color: white;
}

.sliding-img {
    margin-top: 2rem;
    height: 200px;
    background-color: #ccc;
    border-radius: 10px;
}
.hidden{
    display: none;
}
.cards{
    width: 100%;
    height: inherit;
}
.side{
    width: 20%;
}
.slid-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
footer {
    background-color: #111;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-links {
    margin: 0.5rem 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .events {
        width: 90%;
    }

    .regester {
        flex-direction: column;
        align-items: center;
    }
}