body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95vh;
    /*background-color: #F9F9F9; */
    background-image: url('river-5524569_1920.jpg');
    /*background-repeat: repeat;*/
    background-size: cover;
  }
  
  h1 {
    font-size: 3rem;
    margin: 0;
    color: #444;
    text-align: center;
  }
  
  ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  li {
    margin: 0 1rem;
  }
  
  a {
    color: #888;
    text-decoration: none;
    font-size: 1.5rem;
    padding-right: 10px;
  }
  
  a:hover {
    color: #444;
  }

  b {
    color: #888;
    text-decoration: none;
    font-size: 1.5rem;
    padding-top: 20px;
  }
  
  /* Style for social icons */
  .fab {
    font-size: 2rem;
  }
  
  /* Separator between social links */
  li:not(:last-child)::after {
    content: " | ";
    color: #888;
  }

  .centered {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .name {
    background-color: white;
    border: 10px solid black;
    padding: 100px;
    fill: white;
  }

  /*
  .save-screen {
    position: relative;
    animation-name: move;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  
  @keyframes move {
    0% {
      transform: scale(1);
    }
    20% {
      transform: scale(-1, 1);
    }
    40% {
      transform: scale(-1, -1);
    }
    60% {
      transform: scale(1, -1);
    }
    80% {
      transform: scale(1, 1);
    }
    100% {
      transform: scale(1);
    }
  }
  */
