
*, *::before, *::after {
    box-sizing: border-box;
  }

  * {
    margin: 0;
    padding: 0;
  }

  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  
  input, button, textarea, select {
    font: inherit;
  }
 
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
 
  #root, #__next {
    isolation: isolate;
  }


.trykker-regular {
    font-family: "Trykker", serif;
    font-weight: 400;
    font-style: normal;
  }

  .palanquin-dark-regular {
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .palanquin-dark-medium {
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .palanquin-dark-semibold {
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .palanquin-dark-bold {
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

  .oxygen-regular {
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
 

  body {
    padding: 0;
    margin: 0;
  }
  

  .webdesign__footscray {
    width: 100vw;
    height: 100vh; 
    background: url(images/footscray.avif);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }

  .container {
    height: 100vh;
    width: 100vw; 
    padding-inline: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }


  .heading {
    font-size: clamp(4rem, 5vw + 1rem, 6rem);
    color:#F5F5F5;
    margin-bottom: 0;
    margin-top: 3rem;
    line-height: 1;
    text-align: center;
  }

  .subheading {
    text-align: center;
    font-size: clamp(.5rem, 2vw + 1rem, 2.5rem);
    line-height: 1.5;
    margin-top: 2rem;
  }

  .heading span, .subheading span, .trans span {
    color: hotpink;
  }

  .trans {
    text-align: center;
    margin-top: 6rem;
  }

  .trans p {
    font-size: clamp(.2rem, 1vw + 1rem, 1rem);
    line-height: 1.5;
  }

  .container__button {
    margin-top: auto;
    padding-bottom: 50px;
  }

  .button {
    display: block;
    background-color: hotpink;
    color: #000;
    padding: .75rem 1.5rem;
    border-radius: 1rem;
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2rem;
    text-decoration: none;
    text-align: center;
    margin-inline: 50px;
  }

  @media only screen and (max-width: 48em) {
    .subheading {
        line-height: 1.5;
        margin-top: 3rem;
      }

      .trans {
        margin-top: 3rem;
      }
  }

