/* 
Claire Muller
ITWP 1050
Homework 5
*/


/* This block styles the header */
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;
}

/* Setting up the web font */
@font-face {
    font-family: "Tenor Sans";
    src: url(TenorSans.woff2);
}


/* This selector styles the body */
body {
    background-color: #898989;
    margin-left: 70px;
    margin-right: 70px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 35px;
    color: white;
}

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

/* This class centers the external link */
.external-link {
    text-align: center;
}


/* This is a media query with a breakpoint */
@media screen and (max-width: 800px) {
    h1 {
        font-size: 26px;
    }

    body {
        font-size: 14px;
    }
}

/* This is a media query with a breakpoint */
@media screen and (max-width: 600px) {
    body {
        background-color: #686868;
    }
}

/* Making the images responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Container class for responsive layout */
.container {
    display: flex;
    flex-direction: row;
    justify-content:space-around;
    background-color: #e1e1e1;
    padding: 0.25rem;
    flex-wrap: wrap;
}

/* Item class for container */
.item {
    background-color: #bfbfbf;
    color:#000000;
    text-align: justify;
    margin: 0.25rem;
    font-size: 14px;
    padding: 10px;
}
