:root {
    --primary-color: #6c63ff;
    --secondary-color: #f5f2fe;
    --box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  }
  
  body {
    margin: 60px auto;
    margin-top: 0;
    /* max-width: 800px; */
  }
  
  h1,
  h2,
  h3 {
    text-align: center;
    margin: 0;
  }
  
  h1 {
    font-size: 96px;
  }
  
  h2 {
    font-size: 48px;
  }
  
  h3 {
    font-size: 24px;
    opacity: 0.7;
  }
  
  p {
    background: var(--secondary-color);
    border-radius: 4px;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
  }
  
  .navigation-links {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .navigation-links a {
    margin: 20px;
    margin-left: 0;
    border-radius: 4px;
    padding: 20px 15px;
    text-decoration: none;
    text-transform: capitalize;
  }
  
  .contact-link {
    background: var(--primary-color);
    box-shadow: var(--box-shadow);
    color: white;
  }
  
  .about-link {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .homepage-link {
    color: var(--primary-color);
    text-align: center;
    display: block;
  }
  
  .about-paragraphs {
    display: flex;
    margin: 30px 0;
  }
  
  .about-paragraphs p {
    margin: 10px;
  }
  
  .email-link {
    display: flex;
    justify-content: center;
    color: var(--primary-color);
    font-size: 28px;
    text-decoration: none;
  }
  
  .email-link:hover {
    text-decoration: underline;
  }
  
  .shadow {
    box-shadow: var(--box-shadow);
  }

  .textStart{
text-align: start;
  }
  
  @media (max-width : 767px) {
     
   h1{
       font-size: 70px;
   }
   h2{
       text-align: center !important;
   }
   p{
       text-align: center;
   }
   .changeWidth{
       width: 100%;
   }

   .img-fluid{
        display: none;
   }

   .centerClass{
         justify-content: center !important; 
   }
   
  }