/* author: https://codepen.io/GreenSock/pen/YzbPYMx
GSAP
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .wrapper,
  .content {
    position: relative;
    width: 100%;
    z-index: 1;
  }
  
  .content {
    overflow-x: hidden;
  }
  
  .content .section {
    width: 100%;
    height: 100vh;
  }
  
  .content .section.hero {
    /*https://dissenyweb2024.000webhostapp.com/catarriba.jpg
    background-image: url(nova.jpg);*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 60px;

    
  }

  .content .section.hero h2{
    font-family: NO;
  }

    .end-message {
    display: none;
    position: fixed;
    bottom: 20%;
    right: 25%;
    /*background-color: red;*/
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-family: NO;
    text-shadow: 5px 5px 5px solid black;
    font-size: 40px;
  }
  
  .image-container {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    perspective: 500px;
    overflow: hidden;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  