/* Color scheme for now: */
    /* Puce: #C08497 */
    /* Snow: #FCF7F8 */
    /* French Gray: #CED3DC */
    /* Light Sky Blue: #90C2E7 */
    /* Air Force Blue: #4E8098 */



/* Body */
body{
  margin: 0;
  padding: 0;
  background-color: #FCF7F8;
  font-family: "Times New Roman", Times, serif;
  font-size:18px;
  display: flex;
  flex-direction: column;
}

.text {
  font-size: 18px;
  text-align: left;
  padding-left: 375px;
  padding-right: 30px;
  float: right;
  vertical-align: middle;
  margin-top: 5.25%;
}

.secondarytxt{
  position: relative;
  font-size: 18px;
  text-align: left;
  margin-left: 30px;
  margin-top: 475px;
}


/* Footer */

/* This one in particular is so I can have a "sticky footer" that sticks to the bottom of the page and is pushed down with more context/area change */
.content {
  flex: 1 0 auto;
}

/* This makes sure on mobile devices the footer goes all the way to the bottom of the screen */
html, body {
  height: 100%;
}

footer{
  display: block;
  background: #4E8098;
  max-width: 100%;
  padding: 20px;
  font-size: 17px;
  color: #CED3DC;
  flex-shrink: 0;
}

.footertxt{
  color: #CED3DC;
  font-size: 13px;
}

.pallign{
  text-align: center;
  color: #CED3DC;
  font-size: 17px;
  margin-left: auto;
  margin-right: auto;
}

/* Formatting the main title */
.header{
  text-align: center;
  font-family: "Times New Roman", Times, serif;  
  font-size: 40px;
  color: #90C2E7; 
  padding: 2%;
  margin-left: auto;
  margin-right: auto;
}

.maintitle{ 
  font-family: "Times New Roman", Times, serif;  
  font-size: 40px;
  color: #4E8098;
  text-align: center;
}

.subheading{
  font-family: "Times New Roman", Times, serif;  
  font-size: 28px;
  color: #C08497;
}


/* Navbar container */
.navbar {
  background-color: #4E8098;
  display:flex;
  justify-content:center;
}
 
.navbar a {
  font-size: 18px;
  color: #FCF7F8;
  text-align: center;
  padding: 14px 25px;
  text-decoration: none;
  width: 120px;
}

.dropdown .dropbtn {
  font-size: 18px;  
  width: 120px;
  border: none;
  outline: none;
  color: #FCF7F8;
  padding: 14px 25px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #90C2E7;
  width: 120px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #4E8098;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #FCF7F8;
  padding: 12px 25px;
  text-decoration: none;
  display: block;
  text-align: left;
  width: 120px;
}

.dropdown-content a:hover {
  background-color: #90C2E7;
}

.dropdown:hover .dropdown-content {
  display: block;
}


/* Image Stuffs */
#parent{
  position: relative;
  width: auto;
  height: auto;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
}

.puce{
  background: #C08497;
  width: 300px;
  height: 400px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  /* border: 2px solid #C08497; */
  display: grid;
  max-width: 100%;
  max-height: 100vh;
}

.skyblue{
  background: #90C2E7;
  width: 300px;
  height: 400px;
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 1;
  /* border: 2px solid #90C2E7; */
}

#parent img{
  vertical-align: middle;
  position: absolute;
  width: 300px;
  height: 400px;
  top: 30px;
  left: 30px;
  z-index: 3;
  /* border: 2px solid #4E8098; */
  max-width: 100%;
  max-height: 100vh;
}
