body {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #D7B49E;
  }
  
  .landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    text-align: center;
  }
  
  .landing-link {
    font-size: 48px;
    margin-bottom: 20px;
    color: #876b56;
    text-decoration: none;
    transition: font-size 0.3s;
  }
  
  .landing-link:hover {
    font-size: 52px;
  }
  
  .landing-link:not(:hover) {
    font-size: 44px;
  }
  
  .picture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .show-picture {
    opacity: 1;
  }
  