
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}


.flexcontainer {
  display: flex;
  justify-content: space-between;

}

.header {
  width: 100%;
  height: 100px;
  border-bottom: 5px solid black;
  /* clear:both; */
  top: 0px;
  margin-bottom: 10px;


}

.header div {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: right;
  text-align: right;


}

.modeSwitcher {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  align-items: center;
  align-self: center;


}

.container {
  display: flex;
  width: 50%;
  }

.photo {
  border: 5px solid black;
  width: 49%;
  min-height: 100vh;
  display: block;
  position: relative;

}

#imgHero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}


/*  Dark Mode */

.dark {
  /* border-color: white; */
  background-color: #262447;
  min-height: 100vh;
  color: rgb(198, 168, 216);
}

.dark body {
  color: rgb(198, 168, 216);
  background-color: #262447;

}

.dark header {
  border-color: rgb(198, 168, 216);
}

.dark aside {
  border-color: rgb(198, 168, 216);
  background-color: #262447;
}

.dark main {
  border: 5px solid rgb(198, 168, 216);
  border-color: rgb(198, 168, 216);
  background-color: #262447;
}

.dark form {
  color: rgb(198, 168, 216);
  background-color: #262447;
}

.dark footer {
  color: rgb(198, 168, 216);
  border-color: rgb(198, 168, 216);

}

.dark footer a {
  color: rgb(198, 168, 216);
  text-decoration: none;
}

/* Light mode */

.light {
  background-color: #f4e3fc;
  color: #262447;
  min-height: 100vh;
  border-color: rgb(129,18,194);
 
}

.light body {
  background-color: #f4e3fc;
}

.light header {
  border-color: rgb(129, 18, 194);
}

.light aside {
  border-color: rgb(129, 18, 194);
  background-color: #f4e3fc;
}

.light main {
  border: 5px solid rgb(129, 18, 194);
  background-color: #f4e3fc;

}

.light form {
  color: #9b1894;
}

.light footer {
  border-color: rgb(129, 18, 194);
  color: #262447;
}

.light footer a {
  color: #262447;
  text-decoration: none;
}

.blogPosts {
  height: 60vh;
  border-top: 5px solid;
  border-bottom: 5px solid;
  margin-bottom: 10px;
}

footer {

  height: 100px;
  border-top: 5px solid;
  bottom: 0px;

}

footer h2 {
  justify-content: center;
  margin-top: 20px;
  margin-left: 20px;
}

footer ul {
  margin-left: 20px;
  margin-top: 30px;
  align-self: center;
  justify-content: left;
  display: inline-block;
  list-style-type: none;
}

@media screen and (max-width: 700px) {


  .flexcontainer {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .container {
    width: 100%;
   
  }

  .photo {
    width: 100%;
    height: 45%;
    order: 2;
    display: block;
  
  }

  #imgHero {
    width: 100%;

  }
  
  .header h1 {
    font-size: 24px;
  }

  footer h2 {
    text-align: center;
    font-size: 18px;
  }
