@charset "UTF-8";
/* CSS Document */
* {box-sizing: border-box}
body 
{
	font-family: majestic;
    src: url(media/Majesti-Banner-BoldItalic.otf);
    margin:0
}
.active, .dot:hover 
{
  background-color: #717171;
}

@font-face
{
    font-family: myMajesti;
    src: url(media/Majesti-Banner-.otf);
}
p
{
    font-family: myMajesti;
    font-size: 18pt;
}
p.header
{
    color: white;
    font-size: 24pt;
}
p.statement
{
    color: rgb(190 30 45); 
}
p.nav
{
   font-size: 16pt; 
}
p.forms
{
    text-align: left;
    font-family: myMajesti;
    src: url(media/Majesti-Banner-LightItalic.otf);
    font-weight: lighter;
    font-size: 16pt;
}
a:link, a:visited 
{
    color: rgb(190, 30, 45);
    border: 2px solid black;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 150px;
    min-height: 50px;
    background-image: url(images/buttonBG.jpg);
    background-position: center;
    font-size: 14pt;
    font-display: block;
    font-style: oblique;
    font-weight: bold;
}
a:hover, a:active 
{
    background-color: rgb(138, 140, 143);
    color: white;
}
body
{
    background-color: rgb(65, 57, 61);
}
.navbar
{
    float: left;
    min-width: 200px;
    padding-left: 15px;
	padding-right: 15px;
}
.topbanner
{
    float: left;
    min-height: 150px;
    width: 100%;
}
.contactinformation
{
    margin: 15px;
    font-family: majesticbold;
    src: url(media/Majesti-Banner-BookItalic.otf);
    font-size: 14pt;
}
.gmaps
{
    width: 100%;
    height: 300px;
    width: 300px;
    margin: 15px;
    float: left;
}
.container
{
    display: flex;
}
.left
{
  float: left;
    background-color: rgb(138,140,143);
}
.right 
{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.grid-container 
{
  display: grid;
  grid-template-areas:
    'main right';
  grid-gap: 20px;
  background-color: rgb(190, 30, 45);
  padding-bottom: 5px;
  padding-left: 5px;
  padding-top: 5px;
  height: 500px;
}
.grid-container>div 
{
  margin: 10px;
  background-color: rgb(213, 162, 141);
  text-align: center;
  padding:20px 20px;
}
.item1 
{ 
    grid-area: main;
}
.item2 
{ 
    grid-area: right;
    background-image: url(images/colBG-1.jpg);
    align-content: center;
    vertical-align: middle;
}