@media (min-width: 451px) {
  html,
  body {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    margin: 0;
    /* for ios */
    min-height: -webkit-fill-available;
  }

  #mobile-bg-image {
    display: none;
    z-index: -1;
  }

  h1 {
    margin: 0px;
    font-size: 3em;
  }

  #fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    padding-bottom: 30px;
  }

  #fixed-top h1 {
    margin-left: 25px;
    margin-top: 0.5em;
  }

  #nav {
    display: flex;
    margin-top: 3em;
  }

  #nav a:link,
  #nav a:visited {
    padding: 0px 25px 0px 25px;
    text-decoration: none;
    color: #f5f0e8;
    font-weight: bold;
  }

  #home {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
  }

  #usp {
    text-align: center;
    word-wrap: normal;
    position: relative;
    color: #f5f0e8;
    height: 100vh;
    background-image: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #usp h1 {
    font-size: 3em;
  }

  #usp button {
    margin-top: 40px;
  }

  #bio-container {
    margin: 0%;
    padding: 10vh 10vh 10vh 10vh;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #5aa7f9;
  }

  #profile-picture {
    width: 30vw;
    height: auto;
    margin: 30px;
  }

  #bio {
    margin-left: 10vw;
    font-size: larger;
  }

  #bio > p {
    margin: 0px;
  }

  #process-container {
    margin: 0% 5% 10% 5%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #process {
    padding-top: 10vh;
    width: 100%;
    font-size: larger;
    display: flex;
    flex-direction: column;
  }

  #process-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 10vh;
  }

  .section-title {
    margin-bottom: 2rem;
    font-size: 2.5em;
  }

  #process-list ul {
    margin: 0;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  #process-list li + li {
    margin-top: 1rem;
  }

  .img {
    width: 6em;
    height: auto;
  }

  #contact-container {
    margin: 0 0% 10% 0%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5aa7f9;
  }

  #contact {
    padding-top: 10vh;
    width: 100%;
    max-width: 32rem;
  }

  .input-group {
    display: flex;
    flex-direction: column;
    margin: 20px 0px 20px 0px;
    justify-content: space-between;
    align-items: center;  
  }

  .form-row {
    display: flex;
    gap: 1rem;
  }

  .form-row .input-group {
    flex: 1;
    min-width: 0;
  }

  .form-control {
    margin: 5px 0;
  }

  .btn {
    background-color: transparent;
    color: #f5f0e8;
    border: 5px solid #f5f0e8;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
  }

  #footer {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
}
