/*
Name: Rafael Agas
Date:  30 April 2018
Section: CSE 154 AA

This is the css code that will style index.html
It imports fonts through Google
*/

@import url('https://fonts.googleapis.com/css?family=Prompt');

h1, p, #doggo {
   font-family: "Prompt", sans-serif;
   font-size: 50px;
   text-align: center;
   margin-bottom: 10px;
}

p {
   font-size: 25px;
}

body {
   background-image: url("grass.jpg");
   background-size: 100%;
   background-repeat: repeat-y;
   text-align: center;
}

section {
   background-color: white;
   width: 75%;
   margin: auto;
   padding: 0;
   border-radius: 25px;
}

.doggo {
   font-size: 25px;
   display: inline-block;
   background-color: white;
   box-shadow: 5px 5px 5px black;
}

