a {
    color: #ffffff;
    text-decoration: none;
}
a:visited,
a:hover,
a:active,
a:focus {
    color: #ffffff; /* Matches the default color */
    text-decoration: none; /* Ensures no underline on hover/focus states */
}

body {
    background-color: rgb(187, 187, 187);
}

#main {
    margin: 0 auto;
    max-width: 1024px;
    text-align: center;
    width: 60%;
}

.dropdown a:visited {
    color: #000000;
}

.event--date {
    flex-direction: column;
    font-weight: 600;
    padding-bottom: 0.5em;
}

.event--item {
    border-bottom: 1px solid #000000;
    display: flex;
    flex-direction: column;
    font-size: 2.5em;
    padding-bottom: 1.5em;
    padding-top: 1.5em;
    text-align: left;
    width: 100%;
}

.event--info {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.event--list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.event--more {
    background-color: #f60;
    border: 1px solid #000;
    border-radius: 7px;
    color: #fff;
    font-size: 0.75em;
    padding: 10px;
}

.event--name {
    margin-right: 0.5em;
}

.event--title {
    font-family: sharpie;
    margin-top: 100px;
    font-size: 3.5em;
}

@media screen and (max-width: 1023px) {
    #main {
        width: 80% !important;
    }
}

@media screen and (max-width: 767px) {
    .event--info {
        align-items: unset;
        flex-direction: column;
    }

    .event--item {
        font-size: 1.75em;
    }

    .event--more-line {
        margin-top: .75em;
    }
}
