* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;

  }
  
  html,
  body {
    height: 100%;
  }
  
  body {
    display: flex;
    flex-direction: column;
  }
  
  header {
    background-color: #333;
    color: #fff;
  }
  
  nav ul {
    display: flex;
    justify-content: space-between;
    padding: 10px;
  }
  
  nav ul li {
    list-style: none;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #3b0f5e;
    min-height: 100vh;
  }
  
  .hero-image {
    flex-basis: 45%;
    margin-right: 50px;
    margin: 0 auto; /* Add this line */

  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
  }
  
  .hero-text {
    flex-basis: 45%;
    color:#dfb26b;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
  }
  
  .hero-text a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #dfb26b; /* #fff;*/
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .hero-text a:hover {
    background-color: #444;
  }
  
  .content {
    flex-grow: 1;
  }
  
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  
  a.standard-link {
    color: white; /* #333; *//* set the link color */
    padding: 0;
    background-color: transparent;
    text-decoration: underline; /* underline the link text */
    transition: color 0.3s ease-in-out; /* add a transition effect */
  }
  
  a.standard-link:hover {
    color: #555; /* change the link color on hover */
  }