/* CSS Document for Screens */

/* Part One - import the Google Font and add the font, margin and padding to the body tag*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,700,700i&display=swap');



body{
    font-family: 'Open Sans', sans-serif; 
    font-size: 18px; 
    font-weight: 700;
    color: #333;
    margin: 0;
    padding: 0; 
}

/* Part Three Header */
header {
margin: 10px;
}

summary{
    margin: 10px;
    padding: 20px;
    color: #ffffff;
    background-color: #2264ce;  
}

#expect{
    margin: 10px;
    padding: 20px;
    color: #ffffff;
    background-color: darkorange;  
}

#venue{
    margin: 10px;
    padding: 20px;
    color: #ffffff;
    background-color: #2264ce;  
}

#vendors{
    margin: 10px;
    padding: 20px;
    color: #ffffff;
    background-color: #2264ce;  
}

#cosplay{
    margin: 10px;
    padding: 20px;
    color: #ffffff;
    background-color: darkorange;  
}

#attendees{
    margin: 10px;
    padding: 20px;
    color: #ffffff;

}

.image{
    float: left;
    padding: 10px;

}












/* Part Four - page ID */
#page {
    
    max-width: 1200px; /* set max to same width as image */
    margin: 0 auto; /* 0 top and bottom, auto right and left  - this effectively centres content on the page */
    position: relative; /* any items in the page element are positioned relative to it. This has a knock on effect on the navigation later. */
}





h1 {
    margin: 0 0 1em 0; /* top, right, bottom, left */
    font-size: 2.8em; /* 2.8 times the base font size. Users can change their base font size in browser settings (good for poor eyesight) */
    font-weight: 700;
}

h2 {
    margin: 0 0 0.5em 0; 
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.1em; /* size of the line break between elements */
}

h3 {
    margin: 0 0 0.5em 0; 
    font-size: 1.3em;
    font-weight: 700;
}

h3 {
    margin: 0 0 1.5em 0; 
    font-size: 1.em;
    font-weight: 700;
}

p {margin 0 0 1em 0;}

a {color:#cb1a1a;}

a:visited {color: #d05858;} /* pseudo class */

/* Part Eight  */
a.btn {
    
    font-size: 1.2em;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 4px 15px;
    transition: background-color 0.5s;
}

a.btn:hover {
    background-color: rgba(0,0,0,0.3); /* use RGBA to support transparency */
    
}











footer{
    clear:both;
    font-size: 0.8em;
    margin: 40px;
    padding: 10px;
    color: #999;
}

footer .content{
    display: inline; /* ensure element flows alongside and not on a seperate line */   
}

footer a {
    margin-left: 30px;
    color: #777;
}
footer a:visited {
    color: #777;
}
footer a:hover {
    color: #000;
}


/