/* CSS Reset */
body, header, nav, main, footer, h1, div, img, ul, figure, figcaption, section, article, aside, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
}

#container {
    max-width: 1880px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    display: block;
}
 
/* Style rules regarding header content */
header{
    top: 0;
    background-image: linear-gradient(to right, #497a12, #b2d546, #eef5ee);
    height: 200px;
    display: grid;
    grid-template-columns: 60% 13.33333333333333% 13.3333333333333333% 13.3333333333333333%;
}

.Logo{
    max-width: 762px;
    display: inline-block;
    max-height: 172px;
    margin-top: 10px;
    margin-left: 10px;
}

#Facebook{
    max-width: 150px;
    display: inline-block;
    max-height: 160px;
    margin-bottom: 6px;
}

#Twitter{
    max-width: 156px;
    display: inline-block;
    max-height: 160px;
}

#Phone{
    max-width: 180px;
    display: inline-block;
    max-height: 186px;
}

/* Style rules regarding navigation contetrn */
nav ul {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto auto auto;
    list-style-type: none;
    position: sticky;
    margin-left: 170px;
    width: auto; 
    background-color: purple;
}

nav{
    background-color: yellow; 
    height: 30px;
    padding: 1%;
    margin-bottom: 1%;
}

.Subheaders{
    display: none
}

#Events:hover .Subheaders {
    display: inline;
}

/* Style Rules regarding main content */

/* Style Rulews integrated wihin the fotter content */ 
footer {
    display: grid;
    grid-template-columns: 35% 42% 33%;
    text-align: center; 
    background-image: linear-gradient(to right,  #497a12, #b2d546, #eef5ee); 
}

.purple-button{
    text-align: left;
    background-color: purple;
    display: inline-block;
    margin-top: 36px;
    padding: 30px;
    border-style: solid;
    border-width: 6px;
    border-radius: 200px;
}

#Instagram {
    max-height: 200px;
    max-width: 40%;
    padding-bottom: 30px;
}

#TikTok {
    max-height: 200px;
    max-width: 400%;
}


