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

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: fff;
  overflow: hidden; /* Prevent scrolling */
}

h1 {
  font-family: sans;
  font-size: 6em;
  font-weight: bold;
}

h2 {
  font-family: sans;
  font-size: 3em;
}

h3 {
  font-family: sans;
  font-size: 1.5em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 200vw;
  height: 200px;
  background-color: #000;
  display: flex;
  justify-content: start;
  align-items: center;
  z-index: 10;
  transform: rotate(-5deg) translateX(-50px);
  transform-origin: top left;
}

.logo {
  height: 70%;
  margin-left: 70px;
  margin-top: 20px;
}

.content {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height:100vh;
  width:100vw;
  color: rgb(0, 0, 0);
  text-align: center;
  transform: rotate(-5deg);
  gap:20px;
  flex-flow: column;
  padding:40px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .strip {
  position: absolute;
  top:0;
  width: 200%;
  height: 500px;
  transform: rotate(-5deg) translateX(-50px);
  background-color: #ff0;
  transform-origin: bottom left;
  border:10px solid purple;
}

.footer-icons {
  display: flex;
  position: absolute;
  left:50px;
  bottom:40px;
  gap: 10px;
}

.footer-icons img {
  height: 50px; /* Adjust icon sizes */
}

.footer-image img {
  height: 400px;
  position: absolute;
  bottom:-30px;right:100px;
  width: auto;
}

.ca {
  font-size: 1em;
  font-weight: bold;
}


/* For mobile screens */
@media (max-width: 767px) {
  
  body {
    font-size: 0.8em;
  }
  
  .content {
   padding-bottom: 140px;
   gap:12px;
   padding-bottom: 200px;
  }
  
  .header {
    height: 140px;
  }
  .logo {
    height: 60%;
    margin-left: 60px;
    margin-top: 20px;
    margin-bottom:-10px;
  }
    .footer-image img {
      height: 280px;
      bottom:-30px;right:-20px;
    }
    .footer {
      height: 100px;
    }
    
    .footer-icons img {
      height: 50px; /* Adjust icon sizes */
    }
    
    .footer-icons {
      display: flex;
      position: absolute;
      left:20px;
      bottom:20px;
      gap: 10px;
    }
}

/* For mobile screens */
@media (max-width: 400px) {
  
  body {
    font-size: 0.7em;
  }
  
  .content {
   padding-bottom: 140px;
   gap:8px;
   padding-bottom: 220px;
  }
  
  .header {
    height: 140px;
  }
  .logo {
    height: 60%;
    margin-left: 60px;
    margin-top: 20px;
    margin-bottom:-10px;
  }
    .footer-image img {
      height: 240px;
      bottom:-30px;right:-20px;
    }
    .footer {
      height: 100px;
    }
    
    .footer-icons img {
      height: 40px; /* Adjust icon sizes */
    }
    
    .footer-icons {
      display: flex;
      position: absolute;
      left:20px;
      bottom:20px;
      gap: 10px;
    }
}