body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: 'Bebas Neue', Impact, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    text-align: center;
  }
  
  .back-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: red;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 30px;
    font-weight: bold;
    border: none;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    z-index: 10;
  }
  
  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .audi-logo {
    width: 300px;
    max-width: 80vw;
    margin-bottom: -3rem;
  }
  
  .name {
    font-size: 24px;
    letter-spacing: 2px;
  }
  
  .icons {
    display: flex;
    gap: 3rem;
    justify-content: center;
  }
  
  .icons img {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
  }
  
  .icons img:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 600px) {
    .audi-logo {
      width: 200px;
    }
  
    .icons img {
      width: 60px;
      height: 60px;
    }
  
    .name {
      font-size: 18px;
    }

    .icons {
      display: flex;
      gap: 1rem;
      justify-content: center;
    }
  }
  