* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Verdana', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Tahoma, sans-serif;
}

html, body {
    height: 100%;
}

.project-page {
    background: #000544;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 32px;
    margin: 25px 100px;
}

.project-page button {
    background-color: transparent;
    border: none;
    color: #1ceefe;
    font-size: 30px;
}

.project-page div {
    border: 2px solid #1ceefe;
    font-size: 20px;
    color: black;
    background: white;
    display: flex;
    padding: 0 45px;
    border-radius: 8px;
}

.login {
    justify-content: center;
    align-items: center;
    display: flex;
    background: #000544;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 500px;
    height: 530px;
    background: transparent;
    border: 2px solid #1ceefe;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 0 45px;
    overflow: hidden;
}

.container .login-box {
    position: relative;
    width: 100%;
}

.login-box .page-box {
    display: flex;
    flex-direction: column;
}

.page-box .page {
    width: 100%;
}

.page-box .page.username-page {
    transform: translateX(0);
    transition: .25s ease-in-out;
}

.page-box.active-pass .page.username-page {
    transform: translateX(-500px);
}

.page-box .page.password-page {
    position: absolute;
    transform: translateX(500px);
    margin-top: 140px;
    transition: .25s ease-in-out;
}

.page-box.active-pass .page.password-page {
    transform: translateX(0);
}

.page-box .login-title {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.login-title h2 {
    font-size: 32px;
    line-height: 1.5; 
}

.login-title p {
    font-size: 16px;
    font-weight: 500;
}

.page .input-box {
    width: 100%;
    height: 55px;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid #2c4766;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    color: #fff;
    padding: 0 16px;
    transition: 0.3s ease;
}

.input-box input:focus,
.input-box input:valid {
    border-color: #0ef;
}

.input-box label {
    position: absolute;
    top: 0%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #fff;
    pointer-events: none;
    transition: .3s ease;
}

.input-box input:focus~label,
.input-box input:valid~label {
    top: 1px;
    left: 12px;
    font-size: 13px;
    color: #0ef;
    background: #000544;
    padding: 0 6px;
}

.forgot {
    margin-top: 6px;
}

.forgot.show {
    margin: 10px 0 70px;
    display: flex;
    justify-content: space-between;
}

.forgot a {
    font-size: 14.5px;
    color: #0ef;
    text-decoration: none;
}

.forgot a:hover {
    text-decoration: underline;
}

.forgot.show label {
    font-size: 14.5px;
    color: #fff;
    cursor: pointer;
}

.forgot.show label input {
    accent-color: #0ef;
    cursor: pointer;
    margin-right: 3px;
}

.guest-mode {
    margin: 40px 0;
}

.guest-mode p {
    font-size: 14.5px;
    color: #fff;
}

.guest-mode a {
    font-size: 14.5px;
    color: #0ef;
    text-decoration: none;
}

.guest-mode a:hover {
    text-decoration: underline;
}

.btn-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-box a {
    font-size: 14.5px;
    color: #0ef;
    text-decoration: none;
}

.btn-box a:hover {
    text-decoration: underline;
}

.btn-box button {
    width: 90px;
    height: 40px;
    background: #0ef;
    border: 2px solid #0ef;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    color: #000544;
    font-weight: 600;
}

.btn-box button:nth-child(1) {
    background: transparent;
    color: #0ef;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar a {
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.navbar a:hover::before {
    width: 100%;
}

.dropbtn {
    font-size: 18px;
    background-color: transparent;
    color: #fff;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
    margin-left: 40px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 160px;
    box-shadow: 0px 8px 16x 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #485c83;
    padding: 12px 16px;
    text-decoration: none;
    transition: 0.3s linear;
    display: block;
}

.dropdown-content a:hover {
    background-color: transparent;
    color: #fff;
}

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

.name {
    font-size: 1.5rem;
}
section {
    display: flex;
    flex-direction: column;
}
article {
    border-style:inset;
}
.link {
    color: #394867;
    text-decoration: none;
    transition: color 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: color 0.3s linear;

}
.link:hover {
    color: #9ba4b5;
}
#page {
    background-color: #f6f7f9;
    color: #212a3e;
}
/* Home page background */

#background {
    background-color: #85b9dd;
    width: 100%;
    height: 100%;
}

.frame {
    width: 500px;
    height: auto;
    margin: 15% auto 0;
    position: absolute;
    width: 100%;
}

svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/**
    Paper Plane
    */
/* Paper Plane: Container */

.plane-container { 
    width: 200px;
    margin: 0px auto;
    z-index: 3;
}

.plane {
    width: 100%;
    height: 60px;
}

/*Paper Plane: Animation*/
.plane-container {
    -webkit-animation: paper-plane-scoping 2s alternate infinite;
    -moz-animation: paper-plane-scoping 2s alternate infinite;
    animation: paper-plane-scoping 2s alternate infinite;
  
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  
  @keyframes paper-plane-scoping {
    0% {
      -webkit-transform: translateY(0px);
      -moz-transform: translateY(0px);
      transform: translateY(0px);
    }
    100% {
      -webkit-transform: translateY(100px);
      -moz-transform: translateY(100px);
      transform: translateY(100px);
    }
  }
  
  .plane {
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  
    -webkit-animation: paper-plane-soaring 4s forwards infinite;
    -moz-animation: paper-plane-soaring 4s forwards infinite;
    animation: paper-plane-soaring 4s forwards infinite;
  }
  @keyframes paper-plane-soaring {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    40% {
      -webkit-transform: rotate(15deg);
      -moz-transform: rotate(15deg);
      transform: rotate(15deg);
    }
    50% {
      -webkit-transform: rotate(15deg);
      -moz-transform: rotate(15deg);
      transform: rotate(15deg);
    }
    60% {
      -webkit-transform: rotate(-10deg);
      -moz-transform: rotate(-10deg);
      transform: rotate(-10deg);
    }
    70% {
      -webkit-transform: rotate(-10deg);
      -moz-transform: rotate(-10deg);
      transform: rotate(-10deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  
  /**
   * Clouds
   */
  .clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    transform: translateZ(0);
  }
  
  .cloud {
    position: absolute;
    top: 20%;
    width: 300px;
    right: 0;
    opacity: 1;
  }
  
  .cloud.front {
    z-index: 9;
  }
  
  .cloud.distant {
    z-index: 1;
  }
  
  .cloud.background {
    z-index: 1;
  }
  
  /*Cloud Sizing*/
  .cloud.smaller {
    margin-right: 400px;
    width: 100px;
    margin-top: 50px;
  }
  
  .cloud.small {
    margin-right: 200px;
    width: 150px;
  }
  
  .cloud.big {
    width: 500px;
    margin-top: 50px;
    margin-right: 150px;
  }
  
  .cloud.massive {
    width: 600px;
    margin-top: 20px;
    margin-right: 0px;
  }
  
  
  /*Cloud: Animation*/
  .cloud {
    -webkit-animation-name: cloud-movement;
    -webkit-animation-timing-function: linear;
    -webkit-animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 8s;
  
    -moz-animation-name: cloud-movement;
    -moz-animation-timing-function: linear;
    -moz-animation-direction: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-duration: 8s;
  
    animation-name: cloud-movement;
    animation-timing-function: linear;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-duration: 8s;
  }
  
  .slow {
    -webkit-animation-duration: 9.2s;
    -moz-animation-duration: 9.2s;
    animation-duration: 9.2s;
  }
  
  .slower {
    -webkit-animation-duration: 11.2s;
    -moz-animation-duration: 11.2s;
    animation-duration: 11.2s;
  }
  
  .slowest {
    -webkit-animation-duration: 13.5s;
    -moz-animation-duration: 13.5s;
    animation-duration: 13.5s;
  }
  
  .super-slow {
    -webkit-animation-duration: 20.5s;
    -moz-animation-duration: 20.5s;
    animation-duration: 20.5s;
  }
  
  @keyframes cloud-movement {
    0% {
      opacity: 0.1;
      -webkit-transform: translateX(300px);
      -moz-transform: translateX(300px);
      transform: translateX(300px);
    }
    10% {
  
      opacity: 0.7;
    }
    90% {
      opacity: 0;
    }
    100% {
      opacity: 0;
      -webkit-transform: translateX(-1000px);
      -moz-transform: translateX(-1000px);
      transform: translateX(-1000px);
    }
  }

#stage {
    color: #fff;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 93%;
    margin: auto;
    font-size: 1.5rem;
    position: relative;
    width: 500px;
    top: 50%;
}
#home-title {
    margin: 0;
    text-align: center;
}
#home-subtitle {
    margin-top: .5em;
    margin-bottom: 1.5em;
    text-align: center;
    font-style: italic;
    opacity: .9;
}

a {
    text-decoration: none;
    border: none;
    transition-property: color;
    transition-duration: .4s;
    transition-timing-function: ease-out;
}
.fade-in {
    animation: fadeIn 1.5s;
    -webkit-animation: fadeIn 1.5s;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100%{ opacity: 1; }
}
@-webkit-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* CSS for resume page */

.subheading {
    color: #0712ad;
    border-bottom: 2px solid black;
    padding-bottom: 1%;
    padding-top: .5%;
    width: 100%; 
}

.resume {
    display: flex;
    margin: 4%;
}

.main-page {
    
}
.extras {
    
}
.profile {
    
}

section {
    align-items: center;
}
section>h4 {
    justify-content: left;
}

ul#contacts li {
    display: inline-block;
    margin: 0;
    padding: 1em 1em 0 1em;
    border-right: 1px solid black;
}

ul#contacts li:last-child {
    border-right: none;
}