/*
Name: Rafael Agas
Date:  14 April 2018
Section: CSE 154 AA

This is the css code that will style index.html
*/

@import url('https://fonts.googleapis.com/css?family=Nanum+Brush+Script|Righteous');

body {
   background-image: url("web.jpg");
   background-size: cover;
   font-family: "Nanum Brush Script", cursive;
}

#title {
   color: white;
   text-align: center;
   font-size: 8em;
}

#background {
   background-color: rgba(211,211,211,0.4);
   max-width: 85%;
   margin: auto;
   height: 800px;
}

#container {
   display: flex;
   flex-direction: row;
   justify-content: space-around;
   flex-basis: 50%;
}


.choice {
   font-size: 6em;
   padding: 20px;
   padding-left: 20px;
   padding-right: 20px;
   border-style: solid;
   background-color: white;
   width: 300px;
   text-align: center;
   font-family: inherit;
   border-style: solid;
   border-color: black;
}
