* {
    padding: 0px;
    margin: 0px;
}

header {
    /*background-image: url(/images/uiisa-image1.jpeg)*/
    background-color: #18453B ;
    color: white;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 999;   
    min-height: 80px; 
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px;
    flex-wrap: wrap;
}

.navbar-links {
    height: 50px;
    width: 900px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 25px;
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

a:hover {
    color: black;
}

.navbar-image {
    height: 60px;
}

.content {
    background: linear-gradient(180deg, rgba(255,147,0,1) 0%, rgba(255,255,255,1) 50%, rgba(92,187,86,1) 100%);
    background-attachment: fixed;
}

.start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.start-heading {
    color: white;
    background-color: black;
    font-size: 30px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.timeline {
    height: 500px;
    margin: 10px;
}

.events-heading {
    color: white;
    text-align: center;
    font-size: 30px;
    margin: 10px;
    background-color: black;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.event {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}

.event-text {
    display: flex;
    flex-direction: column;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
}

.event-pic {
    width: 400px;
    height: 300px;
}

.event-heading {
    font-size: 35px;
    font-weight: bolder;
}

.event-desc {
    font-size: 20px;
    max-width: 400px;
}

.event-pic img {
    height: 300px;
    width: 400px;   
}

.gmm {
    height: 500px;
    width: 400px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    margin-bottom: 5px;
}

.upcoming-events {
    text-align: center;
    padding: 5px;
    font-size: 25px;
}

footer {
    background-color: #18453B ;
    color: white;
    text-align: center; 
    display: flex; 
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    min-height: 80px; 
}

.socials {
    display: flex;
    flex-direction: column;
    margin: 2px;
}

.socials i {
    font-size: 75px;
}

.socials a {
    color: white;
    font-size: 15px;
}

.socials a:hover {
    color: black;
}

.footer-forms {
    text-decoration: none;
    background-color: #fb8b24;
    color: white;
    padding: 10px;
}

@media (max-width: 980px) {
    .navbar-links {
        width: 100%;
        height: 100px;
    }
    .start-heading {
        font-size: 15px;
    }
    .event-pic img {
        height: 270px;
        width: 360px;   
    }
    .gmm {
        height: 360px;
        width: 270px;
    }
}

@media (max-width:1078px) {
    .timeline {
        width: 100%;
        height: auto;
        margin: 0px;
    }
}

