html, body {
    margin: 0;
    height: 100%;
  }

  p, h1, h2, h3, .navigation-bar {
    font-family: 'Inter', sans-serif;
  }

  h3 {
    font-size: 1.5vw;
  }

  #container {
    min-height: 100%;
    overflow: auto;
  }

  #more {
    text-align: center;
    color: #0038FF;
  }
  
  .navigation-bar {
    width: 100%;
    height: 50px;
    background-color: white;
    display: flex;
    font-size: 1.1vw;
  }
  
  .navigation {
    width: 15%;
    height: auto;
    margin: auto;
    display: flex;
  }
  
  .left {
    width: 50%;
    display: flex;
  }
  
  .right {
    width: 50%;
    display: flex;
    margin-right: 1%;
  }

  a.navi-options:link, a.navi-options:visited {
    justify-content: flex-end;
    color: black;
    text-decoration: none;
  }
  a.navi-options:hover {
    color:#0038FF;
    text-decoration: none;
  }
  
  a.navi-selected:link, a.navi-selected:visited{
    color: #0038FF;
    font-weight: 700;
    text-decoration: underline;
  }

  .navi-selected:hover{
    color: #032397;
  }


  .logo {
    justify-content: flex-start;
    margin-left: 5%;
    width: 45%;
    height: auto;
  }

  /* QUOTE HEAD */
  .quote{
    position: relative;
  }

  .quote-head{
    text-align: center;
    position: relative;
  }

  .head-img{
    width: 100%;
  }

  .head-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
  }

  .head-text-h1{
    font-size: 4.5vw;
    margin-bottom: 0;
  }

  .head-text-p{
    font-size: 1.5vw;
  }

  /* BODY */
  .quote-body{
    display: flex;
    justify-content: space-around;
  }
  
  .quote-body-left {
    width: 35%;
    background-color: #F8F8F8;
    padding: 5% 5% 10% 6%;
  }

  .quote-body-right {
    width: 70%;
    padding: 5% 0 0 10%;
  }

  .contact{
    display: flex;
  }

  .icon{
      display: flex !important;
      justify-content: center;
      align-items: center;
      margin-right: 3%;
  }

  .h1-text{
    margin-top: 1%;
    margin-bottom: 1%;
    font-size: 2.6vw;
  }

  .line{
    width: 15%;
    height: 0.3%;
    background-color: #0038FF;
    position: absolute;
    border: none;
    margin-bottom: 3%;
  }

  .p-text {
    margin-top: 5%;
    font-size: 1.3vw;
  }

  .input-text {
    margin-bottom: 1%;
  }

  .input-box {
    width: 90%;
  }

  .message-box{
    height: 20%;
  }

  #send-button {
    margin: 3% 0;
    font-size: 1.2vw;
    background-color: #0038FF;
    color: white;
    border: #0038FF;
    box-shadow: 0px 0px 5px #0038ff;
    padding: 1% 5%;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
  }

  .copyright {
    margin-top: 20%;
    font-family: 'Inter', sans-serif;
    font-size: 1vw;
    padding-bottom: 1%;
  }