@charset "UTF-8";

/*Saki Yokota
MAT 175-#1148
Exerise #2*/

.heading {
    padding-top: 50px;
    text-align: center;
    font-size: 80px;
    font-weight: bold;
    font-family: Cambria;
    -webkit-text-stroke: 1px yellow;
    color: #c72626;
}

li a:hover { 
    color: yellow;
    -webkit-text-stroke-color: #c72626;
    padding: 5px;
}

nav {
    height: 100px;
}

ul {
    display: flex;
    justify-content: center;
}

li {
    list-style: none;
    padding: 1%;
}

li a {
    font-size: 42px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    font-family: Cambria;
    color: #c72626;
    -webkit-text-stroke: .5px yellow;
}

h1 {
    font-size: 38px;
    font-family: Cambria;
    padding: 1%;
    margin-bottom: 5px;
}

body {
    width: 320px;
    height: 900px;
    margin: 0 auto;
    background: linear-gradient(#749a00,#c6ff1b);
    font-family: Cambria;
    font-size: 25px;
    text-align: center;
    padding: 1% 0;
}

#rollButton {
    height: 50px;
    width: 250px;
    font-size: 30px;
    cursor: pointer;
    text-align: center;
    background-color: #9c1e1e;
    color: aliceblue;
    border-radius: 25px;
    padding: 1%;;
}

#rollButton:hover {
    background-color: #c74e26;
}