/* Div = .     */
/* Element (ID)=   # { property:value;}    */
/* Tag { property:value;}    */

/* Heading 1  - Garamond  - Serif*/
/* Heading 2  - Goudy Old Style - Serif*/
/* Heading 3  - Rockwell - Serif*/
/* All Text - Century Gothic  Sans Serif */
/* Main blue #364b6c  */
/* Lighter blue #7287a5 */

/*General*/
/* Font */
h1{
    font-family: Rockwell, serif;
    font-size: x-large;
    color: white;
    text-shadow: 1px 1px 2px black, 0 0 50px teal, 0 0 5px #364b6c;
}

h2{
    font-family: Garamond, serif;
    font-size: xx-large;
    color: white;
    text-shadow: 1px 1px 2px black, 0 0 30px teal, 0 0 5px #364b6c;

}
h3{
    font-family:Calibri, serif;
    color: honeydew;
}

body{
    font-family: "Century Gothic", serif;
    color: honeydew;
    background-color: #7287a5;
    min-height: 100vh;

}
div.content{
    margin-left: 200px;
    padding: 1px 16px;
    min-height: 100vh;

}
.button{
    background-color: #364b6c;
    border: none;
    color: white;
    padding: 10px 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 15px;
}
.button:hover{
    background-color: teal;
}
button{
    background-color: #364b6c;
    border: none;
    color: white;
    padding: 10px 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 15px;
}
button:hover{
    background-color: teal;
}
/*
table{
    padding-right: 114px;

}
tbody > tr{
    border-right: 114px;
    padding-right: 114px;
}
*/

table input{
    border-right: 114px;
    padding-right: 114px;
    width: 740px;
}
table textarea{
    width: 740px;
    height: 150px;

}



/* Header */
#top-header{
    background-image: url("../img/banner.png");
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 5px;
}
#top-header-text{
    text-align: center;
}

/* Navbar */
.topnav-right {
    float: right;
    background-color: #7287a5;
    color: white;
}
.topnav-right a {
    color: white;
    padding: 5px
}
/* Sidebar */
/* Menu */
.sidebar {
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #364b6c;
    color: white;
    position: absolute;
    height: 100%;
    overflow: auto;
}
/* Sidebar links */
.sidebar a {
  display: block;
  color: honeydew;
  padding: 16px;
  text-decoration: none;
}
/* Links on mouse-over */
.sidebar a:hover{
  background-color: teal;
  color: white;
}

/* Image */
img{
    border-radius: 5%;
}

.responsive {
  with: auto;
  height: auto'
  }

/* Centered Text */
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

}
/* Text that can not be copied from webpage */
.unselectable{
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.card{
    box-shadow: 0 16px 48px #E3E7EB;
}

/* Contact Us */
.contact-form{
    float: left;
    width: 50%;
    text-align: center;
}

.contact-address{
    float: right;
    width: 50%;
}

/* Popi Form */
.popi-form{
    position: center;
    display: flex;
}

/* Footer */
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #364b6c;
    color: white;
    text-align: center;
    font-size: small;
}
.footer a{
    color: honeydew;
    padding: 16px;
    text-decoration: none;
}
.footer a:hover{
    background-color: teal;
}