body {
    /*background-color: #6A6B7F;*/
    background-color: #6A6B7F;
    color: white;
    font-family: 'Montserrat';
    margin: 0px;
}
html, body {
    height: 100%;
}


#project-section {
    background-color: #8586a0;;
}

.header {
    z-index: 2;
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    display: flex;
    height: 50px;
}

.header div {
    flex: 1;
}

.header div:nth-child(1) {
    background-color: #ff62a4;
}

.header div:nth-child(2) {
    background-color: #ff9ad8;
}
.header div:nth-child(3) {
    background-color: #e6c6ff;
}
.header div:nth-child(4) {
    background-color: #cbeaff;
}
.header div:nth-child(5) {
    background-color: #cbf7ef;
}
.header div:nth-child(6) {
    background-color: #87FFE6;
}

.hamburger {
    position: fixed;
    width: 14px;
    z-index: 3;
    top: 9px;
    right: 48px;
}


@keyframes slide-left {
    from {
      transform: translateX(200px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slide-right {
    from {
      transform: translateX(0);
    }
    to {
        transform: translateX(200px);
    }
}

.offscreen-menu {
    animation: slide-right 0.5s forwards;
}

.onscreen-menu {
    animation: slide-left 0.5s forwards;
}

.nav-menu {
    position: fixed;
    z-index: 3;
    top: 50px;
    right : 20px;
    font-size: 25px;
    transform: translateX(200px);
}

ul {
    list-style-type: none;
}
li {
    margin-top: 15px;
    margin-right: 15px;
}

a {
    text-decoration: none;
    color: white;
}
a:hover {
    color: rgb(176, 125, 248);
}

.hamburger i {
    font-size: 35px; /* Increase the size of the downward arrow */
    color: white;
}

.hamburger i:hover {
    color: rgb(156, 177, 247);
}

.intro {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.projectHeader {
    position: absolute;
    top: 30%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}



.intro h1 {
    font-size: 40px;
}

#text{
    width: 500px;
    max-width: 100vw;
    margin: auto;
}

.section {
    position: relative;
    height: 100%;
  }
  
  .down-arrow {
    position: absolute;
    bottom: 20px; /* Position the arrow 20px from the bottom of the viewport */
    left: 50%; /* Center the arrow horizontally */
    transform: translateX(-50%);
    cursor: pointer;
    font-size: 36px; /* Increase the size of the downward arrow */
    color: white; /* Set the color of the arrow */
  }
  .up-arrow {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .down-arrow i {
    font-size: 36px; /* Increase the size of the downward arrow */
    color: white; /* Set the color of the arrow */
  }

  .up-arrow i {
    font-size: 36px; /* Increase the size of the downward arrow */
    color: white; /* Set the color of the arrow */
  }

  .down-arrow i:hover{
    color: rgb(176, 125, 248);
  }

  .up-arrow i:hover{
    color: rgb(176, 125, 248);
  }

  #text p {
    margin: auto;
    visibility: hidden;
  }

  @keyframes appear {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  #text span {
    display: inline-block;
    animation: appear 0.5s ease forwards;
    opacity: 0;
    transform: translateY(-20px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

.button-wrapper {
    position: absolute;
    top: 60%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.rey-button {

    background:  rgb(156, 164, 211);
    color: rgb(8, 27, 91);
    border-radius: 10px;
    font-size: 20px;
    border-radius: 10px;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    padding: 50px 25px;
    text-align: center;
    text-decoration: none;
}

.rey-button:hover {
    padding: 60px 35px;
    color: rgb(8, 27, 91);
}

.form-wrapper {
    margin: 0;
    position: absolute;
    top: 60%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


.form {
    background: rgb(230, 218, 246);
    color: black;
    box-shadow: 0 30px 60px 0 rgba(90, 116, 148, 0.4);
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #060714;
    width: 580px;
    padding-top: 5px;
    padding-bottom: 5px;
}


.title{
    text-align: center;
    display: block;
    margin: 10px auto 5px;
    width: 500px;
}

.primaryTitle {
    font-size: 2em;
    font-weight: bold;
}

.formEntry {
    border-radius: 5px;
    display: block;
    margin: 20px auto;
    min-width: 300px;
    padding: 10px;
    border: 1px solid #060714;
}


.formEntry:hover {
    height: 2em;
    width: 380px;
    transition: ease 0.5s;
    box-shadow: 15px 15px 15px 5px rgba(78, 72, 77, 0.219);
}


.message {
    height: 8em;
    overflow: hidden;
}

.message:hover {
    height: 9em;
}

.submit {
    width: 200px;
    color: white;
    background-color: black;
    font-size: 20px;
    border-radius: 10px;
    border:none;
    margin: 20px auto;
    display: block;
    height: 2em;
}
.submit:hover {
    background-color: #d09fe4;
    color: black;
    box-shadow: 15px 15px 15px 5px rgba(78, 72, 77, 0.219);
    font-weight: bold;
    border: 2px solid black;

}


.name {
    background-color: white;
}

.email {
    background-color: white;
}

.message {
    background-color: white;
}





