/* 
Claire Muller
ITWP 1050
Homework 3
*/


/* This block styles the header as centered */
header {
    text-align: center;
    background-image: linear-gradient(to right, transparent 20%, rgb(36, 36, 36) 50%, transparent 80%);
    color:white;
    font-family: "Tenor Sans", Arial, sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
    text-shadow: 5px 5px 5px #000000;
    letter-spacing: 3px;
    font-variant-caps: small-caps;
    white-space: nowrap;
}


@font-face {
    font-family: "Tenor Sans";
    src: url(TenorSans.woff2);
}



/* This selector styles the body */
body {
    background: url(insects.jpg) center / 400px 400px;
    margin-left: 70px;
    margin-right: 70px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 35px;
    color: white;
}

/* This block styles the footer margins */
footer {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.external-link {
    text-align: center;
}

.flex-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}





