/*
    Name: Lauren Krieger
    Date: September 28, 2020
    Section: CSE 154 AJ

    This is the CSS for my "About Me" page and, yes, that is the Build-A-Bear font.
*/

@font-face {
    font-family: 'Funhouse';
    src: url('fonts/Funhouse.woff2') format('woff2'),
        url('fonts/Funhouse.woff') format('woff'),
        url('fonts/Funhouse.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

header, article {
    background-color: white;
    margin: auto;
    border-radius: 25px;
}

header, #dogs, #cse {
    display: flex;
}

header {
    width: fit-content;
    padding: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: 'Funhouse';
    text-shadow: blue 1px 1px 2px;
    /* color: #0655A5; */
}

body {
    background-image: url('img/bab-bg2.jpg');
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

article {
    width: 65%;
    margin-bottom: 20px;
    padding: 30px;
}

img {
    height: 250px;
}

a {
    color: aliceblue;
}

#dogs {
    justify-content: space-evenly;
    flex-wrap: wrap;
}
