@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Satisfy', cursive;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
    display: grid;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

section h2 {
    color: #fff;
    font-size: 3rem;
    z-index: 1;
    font-family: initial;
    text-align: center;
    margin-top: -40vh;
    mix-blend-mode: overlay;
  }
  section h3 {
    color: #fff;
    font-size: 2rem;
    z-index: 1;
    font-family: initial;
    text-align: center;
    margin-top: -50vh;
    mix-blend-mode: overlay;
  }
  section .icons {
    color: #fff;
    font-size: 3rem;
    z-index: 1;
    font-family: initial;
    text-align: center;
    margin-top: -60vh;
  }
  section a{
    color: #fff6;
    font-family: none;
    text-decoration: none;

  }
section img{
    z-index: 1;
    mix-blend-mode: overlay;
}

section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width:768px) {
    section img{
        width: 300px;
        margin-top: 10vh;
    }

    section h2 {
          margin-top: -30vh;
        font-size: 2.5rem;
      }
      section .icons{
        margin-top: -60vh;
      }

}