.a1 {
    transition: 0.5s;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    color: white;
    background-color: rgba(0,255,0,0.5);
    padding: 15px;
    margin: 0 0 0 10px;
    font-size: 14pt;
}
.a1:active {
    transition: 0.5s;
    box-shadow: 0 50px 0 green inset;
}
.a1:hover {
    transition: 0.5s;
    box-shadow: 0 50px 0 green inset;
}

.about {
    height: auto;
    width: 100%;
    margin: auto;
    font-family: 'Montserrat', sans-serif;
}

.banner {
    width: 100%;
    height: 350px;
    background: url(https://upload.wikimedia.org/wikipedia/commons/1/1e/San_Francisco_from_the_Marin_Headlands_in_March_2019.jpg);
    background-attachment: scroll;
    background-position: center;
    background-size: 100%;
}

body {
    transition: 0.5s;
    margin: 0;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.center {
    text-align: center;
}

.event {
    width: 100%;
    margin: 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24pt;
    color: white;
    background-color: black;
    padding: 15px 0 15px 0;
}

footer {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 35px 0;
    background-color: lightgray;
}

h1 {
    transition: 0.5s;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 36pt;
    padding: 5px 0 5px 0;
    color: white;
    background-color: black;
    margin: auto auto auto auto;
}

.hAbout {
    font-size: 18pt;
    font-weight: 600;
    width: 100%;
    margin: 0.5em -50px;
    text-transform: capitalize;
    background-color: rgba(35,46,74,0.5);
    padding: 10px 0 10px 50px;
}
.hAbout:first-of-type {
    margin-top: 0;
}

.hCont {
    display: grid;
    grid-template-columns: 40% 60%;
    color: white;
    background-color: rgba(35,46,74,0.875);
}

.hDesc {
    display: inline-grid;
    align-content: center;
    margin: 25px 50px;
    grid-column-start: 2;
    grid-column-end: 3;
}

.hImg {
    width: 100%;
    height: 560px;
    grid-column-start: 1;
    grid-column-end: 1;
    background-image: url(https://media2.s-nbcnews.com/i/newscms/2020_45/3350061/200514-san-francisco-al-1446_e5e042815c55291b838fce0a7a11459f.jpg);
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
}

.hPara {
    word-spacing: 2px;
}

.hTop {
    transition: 0.5s;
    padding: 25px 0;
    margin: 0;
    color: white;
    background-color: #232E4A;
    text-transform: uppercase;
    font-size: 24pt;
}

.loc {
    font-weight: bold;
}

.timeDate {
    display: grid;
    grid-template-columns: '25% 50% 25%';
    grid-template-rows: 'main main';
    height: 150px;
}
.timeDate > div {
    display: inline-grid;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: white;
    width: 25%;
    height: 50px;
    text-align: center;
    padding: 35px 0 0 0;
    margin-top: 2px;
}
.timeDate > div:first-child {
    background-color: rgba(0,255,0,0.5);
    color: green;
}
.timeDate > div:last-child {
    background-color: rgba(150,150,150,0.75);
}
.timeDateDesc {
    font-family: 'Montserrat', sans-serif;
    width: 40%;
    height: 150px;
    text-align: left;
    margin: -150px 0 0 30%;
    padding-top: 25px;
}
.timeDateLink {
    background-color: rgba(0,255,0,0.5);
    color: green;
    font-family: 'Montserrat', sans-serif;
    width: 25%;
    text-align: center;
    height: 125px;
    margin: -175px 0 0 75%;
    padding-top: 50px;
}
.timeDateLink:hover {
    transition: 0.5s;
    background-color: green;
    color: rgba(0,255,0,0.5);
}
.timeDateLinkX {
    background-color: rgba(255,0,0,0.5);
    color: red;
    font-family: 'Montserrat', sans-serif;
    width: 25%;
    text-align: center;
    height: 125px;
    margin: -175px 0 0 75%;
    padding-top: 50px;
    text-transform: uppercase;
    text-decoration: line-through;
}
.timeDateLinkX:hover {
    transition: 0.5s;
    background-color: red;
    color: rgba(255,255,255,0.5);
    font-weight: 1000;
    text-decoration: none;
}

@media only screen and (min-width: 1440px) {
    body {
        margin-top: 50px;
    }
    
    h1 {
        border-radius: 50px 50px 0 0;
    }
}

@media only screen and (max-width: 1100px) {
    .a1 {
        font-size: 24pt;
    }
    .a1:hover {
        transition: 0.5s;
        box-shadow: 0 65px 0 green inset;
    }
    .a1:active {
        transition: 0.5s;
        box-shadow: 0 65px 0 green inset;
    }
    
    .banner {
        background-position: center;
        background-attachment: scroll;
        background-origin: border-box;
        background-size: 100%;
        height: 420px;
    }
    
    h1 {
        padding: 15px 0;
        font-size: 55px;
    }
    
    .hAbout {
        padding: 15px;
        background-color: rgba(35,46,74,0.5);
        margin: auto auto 0.5em -15px;
        font-size: 24pt;
    }
    
    .hCont {
        grid-template-columns: 0;
    }
    
    .hDesc {
        grid-column-start: 2;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 1;
        font-size: 16pt;
    }
    
    .hImg {
        grid-column-start: 1;
        grid-column-end: 3;
    }
    
    .hPara {
        margin: 0;
    }
    
    .hTop {
        font-size: 36pt;
    }
    
    .event {
        padding: 30px 0;
        font-weight: 800;
        font-size: 36pt;
        letter-spacing: 1px;
    }
    
    footer {
        transition: 0.5s;
        font-size: 18pt;
        font-weight: 200;
    }
    
    .timeDate {
        height: 320px;
    }
    .timeDate > div {
        padding: 70px 0 0 0;
        height: 100px;
        font-size: 24px;
        font-weight: 400;
    }
    .timeDateDesc {
        margin: -320px 0 0 30%;
        height: 320px;
        font-size: 16pt;
        width: 60%;
    }
    .timeDateLink {
        margin: 0 0 0 0;
        font-size: 24px;
        padding: 25px 0 0 0;
        font-weight: 400;
        width: 100%;
        height: 50px;
    }
    .timeDateLinkX {
        margin: 0 0 0 0;
        font-size: 24px;
        padding: 25px 0 0 0;
        font-weight: 400;
        width: 100%;
        height: 50px;
    }
}

@media only screen and (max-width: 740px) {
    .banner {
        height: 250px;
        background-attachment: fixed;
        background-position: -50px 50px;
        background-size: 200%;
    }
}