/* Default Template CSS */

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

#container {
    z-index: 10;
    margin: 20px auto;
    width: 1040px;
    height: auto;

    /* CSS Grid */
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px 500px 75px;
    grid-template-areas:
       "a a"
       "b c"
       "d d";
}

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

#a {
    grid-area: a;
    
}
#a ul li {
  display: inline;
  padding: 5px;
  text-align: right;
  font-family: Didot, 'Bodoni MT', 'Noto Serif Display', 'URW Palladio L', P052, Sylfaen, serif;
font-weight: 300;
text-transform: uppercase;
  
}


#a ul a:link {
  font-size: 1.25em;
  letter-spacing: 1px;
  font-variant: normal;
}


#a ul a:visited {
    font-size: 1.2em;
    letter-spacing: 1px;
    font-variant: small-caps;
}


#a ul a:hover {
    font-size: 1.2em;
    letter-spacing: 1px;
    font-variant: normal;
    color:black;
    text-decoration: underline;
}


#a ul a:active {
      font-size: 1.2em;
      letter-spacing: 2px;
      font-variant: small-caps;
      text-decoration: underline;
      }


#b {
    grid-area: b;
    
}

#b {
  margin: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto; /* Two rows, one for p and one for h1 */
  background-color: #fffefa;
  font-family: "Didot";
  
}

#b h1 {
  font-size: 3.5em;    /* Larger font for your name */
  color: black;        /* Color of your name */
  text-align: center;
  margin-top: -140px;  /* Adjust this value as needed to move it up */
  padding-top: -40px;
  font-family: "Didot";
}

#b p {
  margin: 0;
  letter-spacing: 0.0015em;
  font-size: 1em;
  text-shadow: none;
  text-align: left;
  padding-left: 10px;
  padding-top: 190px;
  
}

#c {
  grid-area: c;
  
}
#c img {
  height: 500px;
  width: 435px;
 

}
#d {
  grid-area: d;
}

/* 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;
}

/* Color Palette

#111111
#ffffff

/*

/* 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;
}

*/
