@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

body{
    background-color: #ecf0f1;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.heading{
    text-shadow: 2px 2px rgba(0,0,0,0.29);
    margin-bottom: 20px;
    background-color: #3498db;
    color: white;
    padding: 7px 7px 7px 30px; 

}

.materialbox{
    /*
    border-style: solid;
    border-color: lightgrey;*/
    border-radius: 8px;
    background-color: white;
    padding: 5px 20px 20px 20px;
    margin: 15px;
    -webkit-box-shadow: 7px 7px 10px -7px rgba(0,0,0,0.15);
    -moz-box-shadow: 7px 7px 10px -7px rgba(0,0,0,0.15);
    box-shadow: 7px 7px 10px -7px rgba(0,0,0,0.15);
}


form{
    font-size: 22px;
}

button{
    border: none;
    border-style: solid;
    border-color: rgb(214, 214, 214);
    border-radius: 7px;
    cursor: pointer;
    background-color: rgba(209, 209, 209, 0.609);
    margin-top: 20px;
    padding: 5px 10px 5px 10px;
}

input{
    padding: 9px;
    margin-bottom: 10px;
    border-style: solid;
    border-color: rgb(216, 216, 216);
    border-width: 2px;
    border-radius: 5px;
}


hr{
    border-color: grey;
    border-style: solid;
}
