<style>



*{
  margin: 0;
  padding: 0;
  font-family: Helvetica;
  box-sizing: border-box;
}


/* Style the body */
body {

  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  height:100%;
  
}



#header {
	padding: 1%;
	text-align: center;
	color: white;
}

#top{
  display:flex;
  flex-direction:column;
  background: #00a3e0;
  align-items:center;
  height: 20%;
}


/* Increase the font size of the heading */
.header h1 {
  font-size: 40px;
}
.flip-card {
  background-color: transparent;
  width: 300px;
  height: 200px;
  border: 1px solid #f1f1f1;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.Picture_frames{
  text-align: center;
}
/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
}

/* Style the top navigation bar */
#navbar {
  display:flex;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #333;
  width: 100%;
}

/* Style the navigation bar links */
#navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

/* Right-aligned link */
/*
#navbar a.right {
  float: right;
}*/

/* Change color on hover */
#navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Column container 
.row {  
  display: -ms-flexbox; 
  display: flex;
  -ms-flex-wrap: wrap; 
  flex-wrap: wrap;
}
*/
/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
}
.row {
  display: flex;
  justify-content: center;
}

.column {
  /*flex: 33%;*/
  justify-content: center;
  padding: 30px;
}






/* Footer 
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
}
*/
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other 
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}
*/
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
/*
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }


  display: flex;
  justify-content: center;
}*/








/*TIMELINE*/



/* Header/logo Title */



.timeline {
  display: flex;
  flex-direction:column;
  justify-content: space-between;
  position: relative;
  width:100%;
  margin: 0 auto;
  row-gap: 20px;
  

}

/* The actual timeline (the vertical ruler) */
/*
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}
*/
/* Container around content */
.container {
  display:flex;
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 45%;
  
}

/* The circles on the timeline */
/*/
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
left: -6.6%;

left: 50%;
*/

/* Place the container to the left */
.left {
  align-self: start;
}

/* Place the container to the right */
.right {
  align-self: end;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.content {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items: center;
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  width: 100%;
}

.line{
  position:absolute;
  left:50%;
  width:6px;
  height:100%;
  background-color: white;
}





/*About*/
#aboutContent {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 2%;
	padding-bottom: 5%;
}







/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}






</style>
