 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: laila;
 }

 body {
     width: 100%;
     height: 100%;
     background-color: #fb7427;
     color: #fef4b8;
 }

 h1 {
     font-size: 36px;
     font-weight: 400;
     line-height: 1.25;
 }

 p {
     font-size: 15px;
     line-height: 1.25;
 }

 a {
    color: #fef4b8;
    text-decoration: none;
 }

 .logo {
    font-weight: 800;
    font-size: x-large;
 }

 nav {
     position: fixed;
     top: 0;
     left: 0;
     width: 100vw;
     padding: 2em;
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 2;
 }

 .nav-items {
     display: flex;
     align-items: center;
     gap: 2em;
 }

 button {
     outline: none;
     border: 2px solid #fef4b8;
     border-radius: 2em;
     color: #fef4b8;
     background-color: transparent;
     font-size: 15px;
     padding: 0.5em 1em;
 }

 footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 2em;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
 }

 footer h2 {
    width: 40%;
    font-weight: 100;
 }

 .footer-links {
    display: flex;
    gap: 2em;
 }

  canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }