/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }
 
 body {
    background-color: #add8e6; /* Light blue background */
    color: rgb(1, 1, 1); /* White text */
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 
 .container {
    width: 90%;
    max-width: 800px;
    text-align: center;
    padding: 2rem 0;
 }
 
 /* Logo styles */
 .logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
 }
 
 /* Main content styles */
 main {
    margin: 3rem 0;
 }
 
 h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
 }
 
 p {
    font-size: 1.5rem;
    opacity: 0.9;
 }
 
 /* Footer styles */
 footer {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
 }
 
 .contact {
    font-size: 1.2rem;
    font-weight: bold;
 }
 
 .date {
    font-size: 1rem;
    opacity: 0.8;
 }
 
 .rights {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
 }
 
 /* Responsive design for mobile */


 .mochel-logo {
   display: inline-flex;
   align-items: center;
   font-family: 'Arial', sans-serif;
   font-style: italic;
   font-weight: 700;
   font-size: 2.5rem;
   color: #040404;
   text-transform: uppercase;
   letter-spacing: -0.5px;
  }
  
  .mochel-text {
   padding-right: 15px;
  }
  
  .ai-text {
   font-weight: 300;
  }
  
  .arrow {
   position: relative;
   width: 40px;
   height: 4px;
   background: #000;
   margin-left: 10px;
  }
  
  .arrow::before,
  .arrow::after {
   content: '';
   position: absolute;
   right: 0;
   height: 4px;
   background: #000;
   width: 15px;
  }
  
  .arrow::before {
   top: -4px;
   transform: rotate(45deg);
   transform-origin: right bottom;
  }
  
  .arrow::after {
   top: 4px;
   transform: rotate(-45deg);
   transform-origin: right top;
  }
  
  /* Optional hover effect */
  .mochel-logo:hover .arrow {
   transform: translateX(5px);
   transition: transform 0.3s ease;
  }