/*
Zach Wu
04/21/2018
CSE 154 AE
Creative Project #4 CSS
Instructor: Lauren Bricker
TA: Kelley Chen

This Cascading Style Sheet includes different style rules applied to the index.html page. 
*/

html, body {
    height: 100%;
    width: 100%;
}

body {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

div {
    height: 25%;
    width: 25%;
    background-color: rgb(0, 0, 0);
}

.text {
    font-family: cursive;
    font-size: 20pt;
    border: 5px solid white;
    background-color: black;
    color: blue;
    text-align: center;
}

.page, div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page {
    background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSRM2dV8V9zzIj-eOGkyruDCMKcxJnqmVNJW5wEMgD2csnZujziCw);
}

h1 {
    font-weight: bold;
    font-size: 50pt;
}