* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  
  }

  body {
    font-family: "Inter", serif;
    background: rgb(33, 57, 121);
    background: linear-gradient(
      180deg,
      rgba(33, 57, 121, 1) 0%,
      rgba(82, 161, 209, 1) 40%,
      rgba(125, 198, 242, 1) 100%
    );
    background-repeat: no-repeat;
    margin-bottom: 0;
    background-size: cover;
  }

  #wrapper {
    background-image: url(../images/wavecut.png);
    position:relative;
    margin-left:auto;
    margin-right:auto;
    min-width:350px;
    /*padding: 50px 100px;*/
    text-align: center;
    margin: auto;
  }
  .bottom {
    position: absolute;
    bottom: 0; /* set the bottom to 0*/
  }

  h2 {
    font-family: "Lilita One", serif;
    font-weight: 100;
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
  }

  h3 {
    color: #5ffbe8;
    font-size: 24px;
    font-style: italic;
  }

  h4 {
    font-family: "Lilita One", serif;
    font-weight: 100;
    font-size: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  a:link {
    text-decoration: none;
    color: #041256;
    line-height: 150%;
  }

  a:hover {
    color: grey;
    font-weight: bold;
  }

  a:visited {
    color: #52a1d1;
  }

  .box {
    width: 300px;
    min-width:350px;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 30px 20px;
    border-radius: 20px;
    border: 2px solid white;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  footer {
    text-align: center;
  }

  footer a {
    color: white;
  }

  footer a:visited {
    color: #041256;
  }
  #projects {
    padding: 20px 90px;
  }

  #projects div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    justify-content: center;
  }
  .contact {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 5px;
    border: 2px solid white;
    border-radius: 15px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  hr {
    border: 1px solid #c5e0f1;
    margin-top: 40px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }