/* Default Template CSS */

body {
    color: #111111;
    background-color: #C08B5C;
}

#container {
    z-index: 10;
    width: 1fr;
    height: auto;

    /* CSS Grid */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 100vh auto 400px;
    grid-template-areas:
       "a a"
       "b c"
       "d d";
}

#a, #b, #c, #d {
    z-index: 20;
}

#a {
    grid-area: a;
    display: flex;
}

#a img {
  height: 100%;
  object-fit: cover;
  object-position: 0%;
}

#navBar {
  width: 100%;
}

#navBar li {
  padding: 25px;
}

#navBar h1 {
  color: #FFC94A;
  font-size: 5em;
  margin-bottom: 30px;
}

#navBar a {
  font-size: 5em;
  /* padding: 25px; */
  color: #453F78;
}

#navBar a:hover {
  color: #FFC94A;
}

#b {
    grid-area: b;
    padding: 100px;
    background-color: #FFC94A;
}

#b p {
    font-size: 3em;
    line-height: 150%;
}

#c {
  grid-area: c;
  background-color: #FFC94A;
  padding: 100px;
}

#frame {
  background-color: #795458;
  border-radius: 20px;
  padding: 20px;
  /* height: 100%; */
  width: 100%;
}

#frame img {
  width: 100%;
  border-radius: 20px;
}

#d {
  grid-area: d;
  background-color: #453F78;
  display: flex;
}

#d img {
  height: 100%;
  padding: 30px;
}

#footerContact {
  color: white;
}

#footerContact h1 {
  font-size: 4em;
  color: #FFC94A;
}

#footerContact h2 {
  font-size: 3em;
}

#footerLinks {
  padding: 50px;
  color: white;
  width: 100%;
  font-size: 3em;
}

#footerLinks a:hover {
  color: #FFC94A;
}

/* Classes */

.cmiddle {   /* Centers content vertically */                                      
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.rmiddle {  /* Centers content horizontally */                                         
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.fade-in-text {
  animation: fadeIn 2s;
  -webkit-animation: fadeIn 2s;
  -moz-animation: fadeIn 2s;
  -o-animation: fadeIn 2s;
  -ms-animation: fadeIn 2s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
  
.div1 { 
  grid-area: 1 / 1 / 2 / 3;
  text-align: center; 
}
.div2 { 
  grid-area: 2 / 3 / 3 / 5;
  text-align: center; 
}
.div3 { 
  grid-area: 3 / 2 / 4 / 4;
  text-align: center; 
}
.div4 { 
  grid-area: 4 / 4 / 5 / 5;
  text-align: center;
}

.permanent-marker-regular {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
}

.dosis {
  font-family: "Dosis", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350  ;
  font-style: normal;
}

/* Color Palette

#FFC94A
#C08B5C
#795458
#453F78


/*

/* Below are various code snippets for future use as needed */


/* Google Fonts


*/


/* Full Screen Background Image

background-image:url(../images/);
background-position: center center;
background-repeat:  no-repeat;
background-attachment: fixed;
background-size:  cover;
background-color: var(--black);

*/


/* Individual Side Box Shadows

top {
  box-shadow: 0px -15px 10px -15px #111;
}

right {
  box-shadow: 15px 0px 10px -15px #111;
}

bottom {
  box-shadow: 0px 15px 10px -15px #111;
}

left {
  box-shadow: -15px 0px 10px -15px #111;
}

*/

/*  Fullscreen Video Background CSS

#video-background {
  position: fixed;
  right: 0; 
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto;
  z-index: -100;
}

*/
