/*Kevin Pham
CSE 154 AG - Nicole Riley
Due: May 4, 2018
Sets style for index.html by setting the size of photos, arranging elements, and
changing other aesthetic details.  Meant for use with index.html and index.js*/

/*Font from Google Fonts - designed by Rodrigo Fuenzalida*/
@import url('https://fonts.googleapis.com/css?family=Titan+One');

body {
    /*Picture taken outside the HUB*/
    background-image: url("hubLawn2.jpeg");
    background-color: #cccccc;
    background-size: 150%;
}

h1 {
    text-align: center;
    font-size: 50pt;
    font-family: 'Titan One', Arial;
    color: #DFF2FE;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, .7);
}

main {
    display: flex;
    justify-content: space-around;
}

aside {
    flex-basis: 40%;
    background-color: rgba(255, 255, 255, .5);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

fieldset {
    border: 5px solid black;
    border-radius: 15px;
}

legend {
    font-family: Arial;
    font-weight: bold;
}

h2 {
    text-align: center;
}

#name-area {
    font-size: 20pt;
    font-weight: bold;
    font-family: Arial;
    color: blue;
}

/*======================Classes for use in js===========================*/
img {
    height: 300px;
}