body {
	font-family: Montserrat;
	font-size: 24px;
	line-height: 1.5;
	background-color: #F5F3EF;
	color: #333333;
	margin: 40px auto 40px auto;
	width: 1120px;
}
h1{
	font-size: 40px;
	font-weight: 700;
}

a{
  text-decoration: none;
}
/* h2{
  font-size: 32px;
} */

/* HEADER */
header{
  display: flex;
  justify-content: space-around;
}
header .logotype {
  display: flex;
  align-items: center;
  z-index: 3;
}
header .logotype img {
  width: auto;
  height: 40px;
  margin-top: -5px;
  margin-right: 10px;
}

.flan {
  display: none;
}
.logotype:hover #flanid{
  display: block;
}
.logotype:hover #joanaid{
  display: none;
}

.logoflan2 {
  display: none;
}
.logotype:hover #logoflan2id{
  display: block;
}
.logotype:hover #logoflanid{
  display: none;
}




.menu-toggle {
  display: flex;
  align-items: center; 
  z-index: 3;
  opacity: 0;
}

/* .menu-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 3;
} */

.menu {
  background-color: #FDF1F2;
  width: 460px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
/*  this hides the menu, it'll be shown when the burger is clicked  */
/*   transform: translateX(-100%); */
  
  transform: translateX(0);
  
  z-index: 2;
  transition: transform 0.5s ease;
  
}

/* this class is aded with jquery on hamburger click */
.open {
/*   transform: translateX(0); */
  transform: translateX(0) !important;
}

/* .overidemenu{
  transform: translateX(0);
} */


nav {
  position: absolute;
  left: 65px;
  top: 50%;
/*  this margin is a bad solution if we want to add or remove link  */
/*   margin-top: -96px; */
  
/*  we use instead trasnform to move it a 50% of it's own heigh  */
  transform: translateY(-50%);
  
}

.selected {
  font-weight: bold;
}

nav a {
  
  font-weight: 400;
  display: block;
  margin-bottom: 20px;
  transition: all 0.2s;
  text-decoration: none;
  color: #333333;
}

nav a:hover {
  color: #F4B6B9;
}

.space{
  width: 32px;
}

/* button style */
#button {
  display: inline-block;
  background-color: #F4B6B9;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #F4B6B9;
  
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}




/* TAGLINE */
.tagline{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 40px 0;
  background-color: #FDF1F2;
  
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 49%;
}
.pinkBold{
  color: #F4B6B9;
  font-weight: bold;
}

/* BIG PROJECT VIDEO RESUME */
.hello{
  display: flex;
  justify-content: center;
}
.hello img{
  width: 733px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.hello video{
  width: 733px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.hello div:hover {
  opacity: 0.5;
}

/* projects thumbnails */
.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
}
.projects div{
  max-width: 355px;
  margin-top: 30px;
}
.projects div:hover{
  opacity: 0.5;
}
.even {
  margin-right: 30px; 
}
.projects div img{
  border-radius: 10px;
/*   filter: drop-shadow(2px 2px 5px #000); */
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  margin-bottom: 2px;
}


/* project style */
.project video {
  width: 101%;
  margin-left: -2px;
}

.project {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.halfvideo{
  display: flex;
}
.halfvideo video{
  max-width: 50%;
}
.videothree {
  display: flex;
  flex-wrap: wrap;
}
.videothree video {
  width: 33.33%;
  margin-left: 0px;
}


/* Footer */
footer{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 0 0;
}
footer div img{
	margin: -5px 40px 0 40px; */
  height: 40px;
  width: auto;
}

/* media querys */
@media (max-width: 2040px){
  .menu-toggle {
    opacity: 1;
  }
  body{
  	width: 800px;  
  }
/*   .overidemenu{
   transform: translateX(-100%);
  } */
  .menu {
    transform: translateX(-100%);
  }
  
}
@media (max-width: 720px){
	body{
  	width: auto;
  }
  .hello img {
    max-width: 355px;
    width: auto;
  }
  .hello video {
    max-width: 355px;
    width: auto;
  }
  .hello {
    margin: 0 10px 0 10px;
  }
  .even {
    margin: 0;
  }
  .projects div a{
    font-size: 20px;
  }
  
}



