/* Box sizing border-box */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Remove default margin and padding on body */
body {
  margin: 0;
  padding: 0;
}

/* Remove default outline styles */
:focus {
  outline: none;
}

/* Remove text decoration on links */
a {
  text-decoration: none;
}

/* Set default font and color */
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333;
  background-image: linear-gradient(to left top, #051937, #004d7a, #008793, #00bf72, #a8eb12);

}

nav {
  background-image: linear-gradient(to right, #051937, #004d7a, #008793, #00bf72, #a8eb12);
    overflow: hidden;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  nav li {
    float: left;
  }
  
  nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }


  .hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 24px;
  }

  .hero-image-frame {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .hero-image-frame {
    width: 250px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .hero-image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .hero-image-frame::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(to bottom, #fff 0%, #fff 50%, #485563 50%, #485563 100%);
    transform: skewY(-5deg);
    z-index: -1;
  }
  
  
  @media screen and (max-width: 768px) {
    .hero-content h1 {
      font-size: 36px;
    }
    
    .hero-content p {
      font-size: 18px;
    }
  }
  
  footer {
    background-color: #023a618f;
    color: #fff;
    padding: 40px 0 0;
    font-size: 14px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-logo h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    font-size: 16px;
  }
  
  .footer-social ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-social li {
    margin: 0 10px;
  }
  
  .footer-social a {
    color: #fff;
    font-size: 20px;
  }
  
  .footer-bottom {
    background-color: #023a61;
    padding: 10px 0;
    text-align: center;
  }
  
  
  nav li a:hover {
    background-color: #111;
  }
  