@font-face {
	font-family: Jura;
	src: url(http://hbidamian.ga/marinostudios/assets/fonts/jura.woff2);
}

table.contactTable{
    z-index: 10;
    width: 20em;
    border-color: black;
    border-width: thick;
    border-style: double;
    background-color: #555;
}
textarea.comments{
    max-width: 9.5em;
    max-height: 200px;
    width: 250px;
    height: 100px;
    font-size: 16;
    font-family: Jura,sans-serif;
    transition: 0.25s;  
}
td{
    color: whitesmoke;
    vertical-align: top;
    text-align: right;
}
tr{

}
textarea.comments:hover{
    transition: 0.25s;
    background-color: #ddd;
}
textarea.comments:focus {
    border-color: gray;
    transition: 0.25s;
    background-color: #bbb;
}
input.formInput{
    width: 9.5em;
    font-size: 16;
    font-family: Jura,sans-serif;
    transition: 0.25s;
}
input.formInput:hover{
    transition: 0.25s;
    background-color: #ddd;
}
input.formInput:focus{
    border-color: gray;
    transition: 0.25s;
    background-color: #bbb;
}
input[type=submit] {
    background-color: #bbb;
    border-radius: 20%;
    border-style: double;
    border-color: #777;
    font-family: Jura,sans-serif;
}
label{
    font-family: Jura, sans-serif;
}