/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: WorkSans, Helvetica, sans-serif; 
    line-height: 1.6;
    background-color: #ffffff;
    color: #525252;
  }
  
  header {
    background-color: #ffffff;
    padding: 0px 0;
    border-bottom: 2px solid #ffffff;
  }
  
  header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
      font-size: 53x;
      font-weight: 900;
      color: #333;
  }

  header h1 .subtitle {
      font-size: 15px;
      font-weight: 100;
      color: #444444;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  header nav ul li a {
    text-decoration: none;
    color:#444444;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  header nav ul li a:hover {
    color: #ffffff;
    background-color: #ff288d;
  }
  
  main {
    max-width: 950px;
    margin: 15px auto;
    padding: 0 20px;
  }

  a {
    text-decoration: none;
    color:#007BFF;
  }

  a:hover {
    color:#ff288d;
  }
  
  section {
    margin-bottom: 40px;
  }
  
  h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ff288d;
  }

  h3 {
    font-size: 15px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .gallery {
    display: block;
    
    gap: 60px;
  }
  
  .gallery img {
    width: auto;
    max-width: 100%;
    margin-bottom: 80px;
    object-fit: contain;
    align-content: center;
    border: 0px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  #about {
    width: 60%;
  }
  #contact ul {
    list-style: none;
    margin-top: 10px;
  }
  
  #contact ul li {
    margin-bottom: 10px;
  }
  
  #contact ul li a {
    text-decoration: none;
    color: #007BFF;
  }
  
  #contact ul li a:hover {
    text-decoration: none;
    color: #ff288d;
  }
  
  footer {
    text-align: center;
    padding: 20px 0;
    background-color: #000000;
    border-top: 2px solid #ffffff;
    margin-top: 20px;
  }