@charset "utf-8";

html {
    background-image: url("gymbackground.png");
    background-size: cover;
}

body {
    font-family: Verdana, Geneva, sans-serif;
    color: rgb(91, 91, 91);
    background-color: ivory;
    width: 90%;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 20px;
}

h1 {
    text-shadow: 4px 6px 5px gray;
}

h2 {
    font-size: 1.3em;
    text-shadow: 4px 6px 5px gray;
    text-align: left;  
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 0;
}

/* Main h2 headers */
main h2 {
    text-align: left;  
    margin-left: 0;  
    padding-left: 0;  
    clear: both;  
}

main {
    padding: 20px;
    margin-top: 35px;
}


main > img {
    width: 25%;
    padding: 25%;
    float: right;
}

header img {
    width: 100%;
}

header > img {
    height: 500px;
    width: 100%;
}

body > footer {
    background-color: #042c776e;
    color: rgba(102, 102, 102, 0.6);
    font-weight: bold;
    font-size: 0.9em;
    line-height: 3em;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    clear: both;
}


.favorite-movies {
    list-style-type: circle;
    padding-left: 20px;
    margin: 0;
    overflow: hidden;
}


.favorite-movies li {
    display: block;      
    width: 100%;          
    margin-bottom: 10px;  
}


/* Styles for the education list on education.html */
.education-list {
    list-style-type: square; /* Use squares for this list */
    padding-left: 20px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    display: block;
    width: 20%;
    float: left;
}

a {
    display: block;
    background-color: rgb(145, 179, 230);
    line-height: 2.8em;
    text-decoration: none;
    text-align: center;
}

a:hover {
    background-color: skyblue;
    color: rgb(74, 247, 74);
}


