html {
  scroll-behavior: smooth;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Courier New', Courier, monospace;
 }
 
 header
 {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 40px 100px;
  z-index: 10000;
  transition: 0.6s;
 }
 
 header .logo
 {
  position: relative;
  font-weight: 700;
  color: white;
  text-decoration: none;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
 }
 header #toggle
 {
  position: relative;
  width:30px;
  height: 30px;
  cursor: pointer;
 }
 
 header #toggle:before
 {
  content: '';
  position: absolute;
  top:7px;
  width: 100%;
  height: 2px;
  background: white;
 }
 header #toggle:after
 {
  content: '';
  position: absolute;
  bottom:7px;
  width: 100%;
  height: 2px;
  background: white;
 }
 .banner.active header #toggle:before
 {
  top:50%;
  Left: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
 }
 .banner.active header #toggle:after
 {
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(-45deg);
 }
 .banner
 {
  position: relative;
  width: :100%;
  min-height: 100vh;
  padding:100px;
  display: flex;
  align-items:center;
  background: linear-gradient(to bottom, #f0aac2, #dff1ff);
  z-index: 2;
  overflow: hidden;
 }
 .banner.active
 {
  transform: translateX(-400px);
 }
 #navigation
 {
  position: fixed;
  top: 0;
  right: -200px;
  width:400px;
  height:100vh;
  background-color: white;
  z-index: 1;
  display: grid;
  place-items: center;
  transition: 0.5s;
  position: absolute;
 }
 #navigation.active
 {
   right: 0;
 }
 #navigation ul
 {
  position: relative;
  display: flex;
  flex-direction: column;
 }
 #navigation ul li
 {
  list-style: none;
 
 }
 #navigation ul li a
 {
  color: #000;
  text-decoration: none;
  display: inline-block;
  font-size: 2em;
  font-weight: 300;
  text-transform: uppercase;
 }
 .contentLanding
 {
  max-width: 600px;
  position: relative;
  display: inline-block;
  background: rgba(255, 255, 255,0.3);
  width: 500px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255,0.4);
  border-right: 1px solid rgba(255, 255, 255,0.2);
  border-bottom: 1px solid rgba(255, 255, 255,0.2);
  box-shadow: 0 5px 45px rgba(0, 0, 0,0.1);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  text-decoration: beige;
  position: absolute;
  left: 10%;
  top: 20%;
  transition: 0.5s;
  overflow: hidden;
  border-radius: 10px;
  
 }
 .backgImg
 {
  background-image: url(flower.png);
  filter: blur(20px);
 }
 .contentLanding h2
 {
  color: white;
  font-size: 2.5em;
  margin: 5px;
 }
 .contentLanding h2 span
 {
  color: white;
  font-size: 1.2em;
 }
 .contentLanding p
 {
  color:white;
   font-size: 1.2em;
   font-weight: 300;
   margin: 1px;
   padding: 5px;
 }
 .contentLanding:hover
 {
  transform: translateX(-20px);
 }
 .contentLanding::before
 {
  content:'';
  position: absolute;
  top:0;
  left:0;
  width:30px;
  height:100%;
  background:rgba(255,255,255,0.5);
  transform:skewX(45deg) translateX(600px) ;
  transition: 1s;
  overflow: hidden;
 }
 .contentLanding:hover::before
 {
  transform:skewX(45deg) translateX(-200px) ;
 }
 .sci
 {
  position: relative;
  display: flex;
  z-index: 2;
  position: absolute;
 display: flex;
 flex-direction: column;
 right: 100px;
  
 }
 .sci li
 {
   position: relative;
  list-style: none;
  margin: 10px;
  position: flex;
  
 }
 .sci li a
 {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  text-decoration: none;
  
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: beige;
  border: 1px solid rgba(255, 255, 255,0.4);
  border-right: 1px solid rgba(255, 255, 255,0.2);
  border-bottom: 1px solid rgba(255, 255, 255,0.2);
  box-shadow: 0 5px 45px rgba(0, 0, 0,0.1);
  backdrop-filter: blur(2px);
  color: #fff;
  font-size: 20em;
  transition: 0.5s;
  overflow: hidden;
 }
 .sci li a:hover
 {
  transform: translateX(-20px);
 }
 .sci li a::before
 {
  content:'';
  position: absolute;
  top:0;
  left:0;
  width:30px;
  height:100%;
  background:rgba(255,255,255,0.5);
  transform:skewX(45deg) translateX(70px) ;
  transition: 0.5s;
  overflow: hidden;
 }
 .sci li a:hover::before
 {
  transform:skewX(45deg) translateX(-70px) ;
 }
 .sci li img
 {
  max-width: 20px;
  filter: invert(1);
  mix-blend-mode: difference;
 }
 @media(max-width:767px)
 {
             header
             {
               padding:20px 50px;
             }
             .banner
             {
               padding:100px 50px 150px;
             }
             .banner h2
             {
               font-size: 1.8em;
             }
             .banner .content p, .content a
             {
               font-size: 1em;
             }
           .banner.active
           {
           transform: translateX(-250px);
           }
           #navigation
           {
           width:250px;
           }
           #navigation ul li a
           {
           font-size: 1.5em;
           margin: 5px 0;
           }
           .sci
           {
           position: absolute;
           bottom: 50px;
           right: initial;
           flex-direction: row;
           }
           .sci li a
           {
           margin: initial;
           margin-right: 10px;
           }
 }
 
 .glassmorphic
 {
   position:absolute;
   width:100%;
   height:100vh;
   display:flex;
   justify-content:center;
   align-items:center;
   }
 
   .glassmorphic .color
 {
   position: absolute;
   filter: blur(125px);
 }
 .glassmorphic .color:nth-child(1)
 {
   background: #fff59b;
   width: 600px;
   height:600px;
   top:-350px;
 
 }
 .glassmorphic .color:nth-child(2)
 {
   background: #8bd6e7;
   width: 500px;
   height:500px;
   top:-150px;
 
 }
 .glassmorphic .color:nth-child(3)
 {
   background: #fffd87;
   width: 300px;
   height:300px;
   right:0px;
 
 }
 

 .projects{
  box-sizing: border-box;
}

.projects{
  
  padding: 20px;
  background: linear-gradient(45deg,#f0aac2, #8bd6e7, #fffd87);
  font-family:  'Courier New', Courier, monospace;
}

/* Center website 
.projects {
  max-width: 1000px;
  margin: auto;
}*/

h1 {
  font-size: 50px;
  word-break: break-all;
}

.row {
  margin: 8px -16px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  display: none; /* Hide columns by default */
}

/* Clear floats after rows */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content 
.content {
  background-color: white;
  padding: 10px;
}*/

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  border: 1px solid #1abc9c;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
}

/* Add a grey background color on mouse-over */
.btn:hover {
  background:linear-gradient(45deg,rgb(185, 235, 250),#fff);
  border: none;
}
.projectsSpace
{margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.containerACA .card
{
  position: relative;
  width: 200px;
  height: 300px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 15px 60px rgba(0, 0, 0,0.5);
  
}
.containerACA .card .face
{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.containerACA .card .face.face1
{
  box-sizing: border-box;
  padding: 20px;

}
.containerACA .card .face.face1 h2
{
  margin: 0;
  padding: 0;
}

.containerACA .card .face.face2
{
   background: rgb(169, 200, 230);
   transition: 0.5s;
}
.containerACA .card:hover .face.face2
{
  height: 60px;
}
.containerACA .card .face.face2::before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.containerACA .card .face.face2 h2
{
  margin: 0;
  padding: 0;
  font-size: 3em;
  color: #fff;
  transition: 0.5s;
}
.containerACA .card:hover .face.face2 h2
{
  font-size: 1em;
}
/* Add a dark background color to the active button */
.btn.active {
  background-color: rgb(102, 102, 102);
   color: white;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif;
}
.academics{
  background: linear-gradient(45deg,#f0aac2, #8bd6e7, #fffd87);
}
section#timeline {
  width: 80%;
  margin: 20px auto;
  position: relative;
}
section#timeline:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  margin: 0 0 0 -1px;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.2);
}
section#timeline article {
  width: 100%;
  margin: 0 0 20px 0;
  position: relative;
}
section#timeline article:after {
  content: '';
  display: block;
  clear: both;
}
section#timeline article div.inner {
  width: 40%;
  float: left;
  margin: 5px 0 0 0;
  border-radius: 6px;
}
section#timeline article div.inner span.date {
  display: block;
  width: 60px;
  height: 50px;
  padding: 5px 0;
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0 0 0 -32px;
  border-radius: 100%;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: #25303B;
  color: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 0 7px #25303B;
}
section#timeline article div.inner span.date span {
  display: block;
  text-align: center;
}
section#timeline article div.inner span.date span.day {
  font-size: 10px;
}
section#timeline article div.inner span.date span.month {
  font-size: 18px;
}
section#timeline article div.inner span.date span.year {
  font-size: 10px;
}
section#timeline article div.inner h2 {
  padding: 15px;
  margin: 0;
  color: #fff;
  font-size: 20px;
  
  letter-spacing: -1px;
  border-radius: 6px 6px 0 0;
  position: relative;
}
section#timeline article div.inner h2:after {
  content: '';
  position: absolute;
  top: 20px;
  right: -5px;
  	width: 10px; 
	  height: 10px;
  -webkit-transform: rotate(-45deg);
}
section#timeline article div.inner p {
  padding: 15px;
  margin: 0;
  font-size: 20px;
  background: #fff;
  color: #656565;
  border-radius: 0 0 6px 6px;
}
section#timeline article:nth-child(2n+2) div.inner {
  float: right;
}
section#timeline article:nth-child(2n+2) div.inner h2:after {
  left: -5px;
}
section#timeline article:nth-child(1) div.inner h2 {
  background: #e74c3c;
}
section#timeline article:nth-child(1) div.inner h2:after {
  background: #e74c3c;
}
section#timeline article:nth-child(2) div.inner h2 {
  background: #2ecc71;
}
section#timeline article:nth-child(2) div.inner h2:after {
  background: #2ecc71;
}
section#timeline article:nth-child(3) div.inner h2 {
  background: #e67e22;
}
section#timeline article:nth-child(3) div.inner h2:after {
  background: #e67e22;
}
section#timeline article:nth-child(4) div.inner h2 {
  background: #1abc9c;
}
section#timeline article:nth-child(4) div.inner h2:after {
  background: #1abc9c;
}
section#timeline article:nth-child(5) div.inner h2 {
  background: #9b59b6;
}
section#timeline article:nth-child(5) div.inner h2:after {
  background: #9b59b6;
}
.containercontact{
  box-sizing: border-box;
}
.login-page-body {
	min-height: 100vh;
	background-size: 85rem;
	background-position: -16vw -32vh;
	background-repeat: no-repeat;
}

/* Style inputs */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #457fa0;
}

/* Style the container/contact section */
.containercontact{
  border-radius: 5px;
  background:linear-gradient(45deg,#f0aac2, #8bd6e7, #fffd87);
  padding: 10px;
}

/* Create two columns that float next to eachother */
.columncontact {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

/* Clear floats after the columns */
.rowcontact:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .columncontact, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}
