* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
h1 {
    padding-bottom: 5px;
}
img {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
html, body {
    margin: 0; 
    height: 100%; 
    overflow: hidden;
}

/* class styles are below */
.selected-button {
    display:inline-block;
    padding:0.35em 1.2em;
    border:0.1em solid #FFFFFF;
    margin:0 0.3em 0.3em 0;
    border-radius:0.12em;
    box-sizing: border-box;
    text-decoration:none;
    font-family: 'Roboto',sans-serif;
    font-weight: bold;
    font-size: 10pt;
    color:#FFFFFF;
    background-color: rgb(116, 58, 133);
    text-align:center;
    transition: all 0.2s;
}
.disabled-button {
    display:inline-block;
    padding:0.35em 1.2em;
    border:0.1em solid #FFFFFF;
    margin:0 0.3em 0.3em 0;
    border-radius:0.12em;
    box-sizing: border-box;
    text-decoration:none;
    font-family: 'Roboto',sans-serif;
    font-weight: bold;
    font-size: 10pt;
    color:#000000;
    background-color: #D3D3D3;
    text-align:center;
    transition: all 0.2s;
    pointer-events: none;
}
.button {
    display:inline-block;
    padding:0.35em 1.2em;
    border:0.1em solid #FFFFFF;
    margin:0 1.0em 0.3em 0;
    border-radius:0.12em;
    box-sizing: border-box;
    text-decoration:none;
    font-family: 'Roboto',sans-serif;
    font-weight: bold;
    font-size: 10pt;
    color:#000000;
    background-color: #FFFFFF;
    text-align:center;
    transition: all 0.2s;
}
.button:hover {
    color:#FFFFFF;
    background-color:#000000; 
}
.modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    /* background-color: rgb(0,0,0); Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
    background-color: #fefefe;
    position: absolute;
    left: 30%;
    top: 5%;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    font-family: Verdana;
    font-size: 14px;
    height: 70%;
    width: 40%;
    text-align: center;
    vertical-align: middle;
}
.modal-content-smapho {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    font-family: Verdana;
    font-size: 14px;
    width: 70%;
    text-align: center;
    vertical-align: middle;
}
/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* id styles are below */
#navbar {
    color: white;
    background-color: #30424d;
    padding: 15px 17.5px;
    margin-bottom: 10px;
    font-size: 20pt;
} 