/*
 * Xiaoyu Tang
 * 4/16/2018
 * CSE154 AI
 *
 * This is a css file linked to index.html that applies changes to appearance
 * to index
 */

html {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    margin-bottom: 150px;
    margin-left: 30px;
    margin-right: 30px;
}

div {
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 5px;
}

footer {
    font-size: 8px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

button {
    font-size: 15px;
    border: none;

}

header, footer {
    text-align: center;
}

div, button {
    padding: 5px;
}

button, header {
    background-color: rgba(241, 237, 228, 0.5);
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.158);
    border-radius: 2%;
}