html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: DarkSalmon;
    font-family: 'Helvetica', 'Arial', sans-serif;
  }
  
  #content {
    width: 100%;
    height: 100%;
    background-image: url("./src/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center; 
    justify-content: center;
  }
  
  #infoBox {
    text-align: center;
    color: white;
    padding-bottom: 200px;
  }
  
  h1 {
    font-size: 10vmin;
    margin: 8px;
    text-shadow: 2px 2px DarkSalmon;
  }
  
  h2 {
    font-size: 3.2vmin;
    margin: 8px;
    text-shadow: 1px 1px DarkSalmon;
  }
  
  footer {
    width: 100%;
    height: 90px;
    background: DarkSalmon;
    position: fixed;
    bottom: 0;
    text-align: center;
    color: white;
  }
  
  a:link {
    color: white;
  }
  
  a:visited {
    color: white;
  }
  
  .textEmail {
    padding-left: 8px;
    display: inline-block;
    vertical-align: 20%;
  }
  