
body {
    background-color: #FFFFFF;
}

div {
    //align-items: center;
    border-radius: 5px;
}


div.header {
    border: 0 solid;
    height:30px;
    width: 800px;
    background-color: darkgreen;
    color: #FFFFFF;
    display:flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 20px;
    text-decoration: none;
    font-family: arial, Helvetica, sans-serif;
    font-weight: bold;

}

div.footer {
    border: 0 solid;
    height:20px;
    width: 800px;
    background-color: darkgreen;
    color: #FFFFFF;
    display:flex;
    align-items: center;
    //text-align: justify;
    justify-content: center ;
    position: relative;
    font-size: 10px;
    text-decoration: none;
    font-family: Arial, Helvetica,sans-serif;
    font-weight: normal;

}


div.mainbox {
    border: 0px solid;
    border-color: darkgreen;
    //border-radius:5px;
    //height:500px;
    width: 800px;
    background-color: #F8EBB7;
    color: #FFFF00;
    display:inline-block;
    align-items: center;
    justify-content: center;
    //position: relative;


}




table {
	width:100%;
	border-collapse: collapse;
	border: 0px solid;
	vertical-align: center;
	}

th {

}

td {
    padding: 10px;
    border: none;	
    text-align: center;
    vertical-align: center;

}


.button {
    border:none;
    color: white;
    padding: 1px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;

    margin: 4px 2px;
    transition-duration: 0.1s;
    cursop: pointer;
    border-radius: 6px;
    width: 500px;
    height:35px;
    box-shadow: 5px 10px 10px #888888;

}
.button_i{
    background-color: #4CAF50;
    color: #FAFAFA;
    border: 2px solid #4CAF50;
}

.button_i:hover{
    background-color: yellow;
    color: #4CAF50;
    border: 2px solid red;
    font-weight: bold;
    box-shadow: 0px 0px 30px red ;
}


.button_r{
    background-color: #4CAF50;
    color: yellow;
    border: 2px solid #4CAF50;
}

.button_r:hover{
    background-color: yellow;
    color: red;
}



