body {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    padding: 20px;
    /*font-size: 100%;*/
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    color: #E93400;
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.titlelink:hover {
    text-decoration: none
}

span a {
    color: #E93400;
    text-decoration: none
}

span a:hover {
    text-decoration: underline
}

#starstitle {
    font-size: 6em;
    font-family: 'Franklin Gothic Medium';
    color: red;
    text-shadow: 10px 10px 10px #808080;
}

.headerlink {
    color: blue;
}

.eventitem {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.eventdate {
    width: 130px;
}

.eventdetail {
    flex: 1;
}

.eventdescription {
    font-size: .85em;
}

@media screen and (max-width: 675px) {
    .eventitem {
        flex-direction: column;
        align-items: revert;
    }
    .eventdate {
        display: flex;
        width: auto;
        align-items: baseline;
        font-weight: bold;
    }
    .eventdate > div {
        padding: 0 10px 0 0;
    }
}

@media screen and (max-width: 435px) {
    #starstitle {
        font-size: 4em;
    }

    .headerlink {
        font-size: .7em;
    }
}