/* Resetting some default browser styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: whitesmoke;
    font: black;
}


.container {
display: flex; justify-content: center; align-items: center; flex-direction: column;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
.customIndent {
    padding-right: 15em;
}

}

nav ul {
    list-style-type: none;
    text-align: center;

}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
}

main {
     padding: 20px 20px 60px 20px;
}

section {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;

    
}

img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-height: 50%;

}



a:link
{
color: slateblue;

}



a:visited 
{
    color: slateblue;
    
}

a:hover
{
    color: purple;
}