html {
    height: 100%;
    font-family: Nunito, sans-serif;
  }
  
  body {
    background-color: rgba(55, 173, 189, 0.265);
    position: relative;
    min-height: 100vh;
    padding: 0;
    margin: 0;
  }
  
  main {
    padding: 0 20px 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  div.about-text{
    font-size: 1.1em;
    text-align: center;
  }

  .about,
  .about-image img {
    display: flex;
    flex-direction: column;
    align-items: center;
   }

   label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    resize: none;
  }

  
  .navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    height: 7%;
    z-index: 10;
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  
    background-color: rgb(26, 124, 137);
    color: white;
    padding: 0px 0px;
  
  }
  
  .nav-list {
    display: flex;
    flex-direction: row;
    position: relative;
    right: 30px;
    list-style: none;
  }
  
  .navbar a {
    color: white;
    font-weight: bold;
    margin: 0 12px;
    text-decoration: none;
    letter-spacing: 2px;
  }

  .nav-list a:hover {
    color: rgb(245, 192, 32);
    text-decoration: underline;
  }
  
  .nav-list a:active {
    color: rgb(245, 192, 32);
  }
  
  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(26, 124, 137);
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem;
  }
  