/*CRTY 1043/4473/Map Publishing
Purpose: Portfolio Website
Author: Rebecca McCarthy
Date March 24, 2023*/


/* This block fills the borders on the browser page. These are the defaults for the page. */
html,
body {
    font-size: 18px;
    font-family: Merriweather;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    height: 100%;
    width: 100%;
    color: rgb(69, 68, 68);
    background-color: rgb(239, 241, 197);
}
/* end block*/


/* NAVIGATION*/
.navigation {
  flex: 0 0 25%;
  background: rgb(3, 94, 123);
  padding: 0.5rem;
  position: relative; /*relative to the browser size, etc*/
  font-family: Merriweather;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
  float: right;
  display: block;
  padding: 8px;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
  background-color: #A2A77F;
}
/*END NAV*/


/*HEADER*/
h1 {
  text-align: center;
  margin-top: 20px;
  font-size: 42px;
  font-family: 'Lato';
}

.main-header {
  display: block;
  position: relative;
  margin: auto;
  width: 50%;
  padding: 20px;
}
/*END HEADER*/

/*INDEX.HTML*/

/*INFO BOXES*/
.column {
  box-sizing: border-box;
  float: left;
  width: 33.33%;
  padding: 2em;
  text-align: left;
}

/* Intro cards*/
.intro-container {
  display: flex;
  margin-left: 5%;
  margin-right: 5%; 
}

.intro-row {
  display: inline-flex;
  flex-wrap: wrap;
  /* flex-grow: 1; */
  width: 100%;
}

.intro-row div {
  margin-top: 6px;
  flex: 1;
}

.about-column {
  float: left;
  width: 30%;
  padding: 10px;
  
}

/* Clear floats after image containers */
.about-imgs::after {
  content: "";
  clear: both;
  display: table;
}

/*GALLERY*/

.gallery-intro {
    display: block;
    position: fixed;
    float: left;
    width: 50%;
    padding: 20px;
    color: #002E2C
  }

#projects-feed {
  position: relative;
  padding-left: 37%;
  color: #002E2C
}

element.style {
  position: relative;
  overflow: hidden;
  height: 3654px;
}


.clearfix {
  display: table;
}

article {
  height: 300px;
  width: 400px;
  padding: 0.3em;
}

.thumb {
  position: relative;
  height: 300px;
  width: 400px;
  margin: 0 auto;
}

.thumb img {
  vertical-align: middle;
  height: 300px;
  width: 400px;
}

#infographic {
  height: 550px !important;
}

#antique {
  height: 550px !important;
}

#SinaiLayout {
  height: 575px !important;
}

.thumb .project-title {
  position: absolute;
  bottom: 0;
  background:rgb(237, 232, 232);
  background: rgba(33, 56, 67, 0.75); /*black background with 0.5 opacity #EFF1C5*/
  color: rgb(236, 246, 251);
  text-shadow: 0.5px 1px rgb(125, 181, 218);
  width: 89.9%;
  padding: 20px;
  margin-bottom: 0%;
}


/*MARKETING SHEETS*/

.smileysmktsheet img {
  padding: 20%;
}

/*element.style {
  width: 268px;
  position: relative;
  left: 0px;
  top: 0px;
}*/


/*.projects-feed
.projects {  /*.projects = the new set.
  
  height: auto;
  max-width: 400px;
}*/



/*.projects-feed
.project-title {
  color:rgb(69, 68, 68);
  display: none;
  margin: 0;
  position: absolute;
  text-align: center;
  top: 42.5%;
  width: 100%;
}

.project-title {
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
}*/

article {
  display: block;
}

/*.gallery-container {
  display: flex;
  flex-wrap: wrap;
  margin-left: 5%;
  margin-right: 5%; 
  justify-content: space-around;
}

.gallery-container img {
  width: 250px;
  margin-top: 10px;
}
  
  /* Clear floats after the columns 
  .row:after {
    content: "";
    display: table;
    clear: both;
  }*/

  /*RESUME*/
  

  iframe {
    float:left;
    width: 100%;
    height: 600px; 
    background-color: #E3E7AF;
    margin-left: 33.33%;
    
  }

  .certificates-column {
    float: left;
    width: 33%;
    padding: 12px;
  }
  
  /* Clearfix (clear floats) */
  .certificates-row::after {
    content: "";
    clear: both;
    display: table;
  }

  /*responsiveness on small screens*/
    @media (max-width: 600px) {
      .resume, .certificate {
        width: 100%;
        height: auto;
      }
    }


  /*footer*/
  .main-footer {
    width:100%;
    height:100%;
    bottom:0;
    left:0;
    font-size: 16px;
    font-family: Merriweather;
    padding: 0px;
    float: left;
    color: rgb(237, 232, 232);
    background-color: #002E2C;
    text-align: center;
  }

  a {
    color: #EFF1C5;
  }
  
  .footer-text {
    width: 100%;
    padding-top: 110px;
    text-align: center;
  }

  /*CONTACT FORM*/
  /* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; 
  padding: 12px; 
  border: 1px solid #035E7B; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; 
  margin-bottom: 16px; 
  resize: vertical /*resize the textarea*/
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #035E7B;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #A2A77F;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #E3E7AF;
  padding-left: 300px;
  padding-right:300px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.certificates-row {
  padding-left: 300px;
  padding-right:300px;
  padding-top: 20px;
  padding-bottom: 20px;
}