@font-face {
  font-family: 'Satoshi';
  src: url("../fonts/Satoshi-Variable.woff2") format('woff2'),
       url('../fonts/Satoshi-Variable.woff') format('woff');
  font-weight: 100 1000;
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url("../fonts/Satoshi-VariableItalic.woff2") format('woff2'),
       url('../fonts/Satoshi-VariableItalic.woff') format('woff');
  font-weight: 100 1000;
  font-weight: normal;
  font-style: italic;
}

:root {
    /* basic variables */
    --color-white: #FEFEFC;
    --color-black: #161616;

    --fontFamily-base: 'Satoshi', sans-serif;
}

body {
    font-family: var(--fontFamily-base);
    color: var(--color-white);
    background-color: var(--color-black);

    margin: 0;
}

a{
    color: inherit;
    text-decoration: none;
}

.section{
  width: 100%;
  height: 100vh;
  
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;

  text-align: center;
}

.wip{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  text-transform: uppercase;
  font-weight: 500;
}

.wip img{
  width: 25vw;
}

.wip p{
  margin: 0;
}

.wip p:first-of-type{
  font-size: 1rem;
}

.wip p:last-of-type{
  font-size: 0.5rem;
}

.contact{
  font-weight: 100;
}

@media all and (min-width: 768px) {
  .wip{
    gap: 40px;
  }
  .wip img{
    width: 12.5vw;
  }
  .wip p:first-of-type{
    font-size: 2rem;
  }

  .wip p:last-of-type{
    font-size: 1rem;
  }

  .contact p{
    font-size: 1.5rem;
  }
}

@media all and (min-width: 1024px) {
  .wip{
    gap: 64px;
  }

  .wip p:first-of-type{
    font-size: 3rem;
  }

  .wip p:last-of-type{
    font-size: 1.5rem;
  }

  .contact p{
    font-size: 2rem;
  }
}