* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
  }
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
  
  body {
    font-family: 'Montserrat', sans-serif;
  }
  hr {
    margin: auto;
    padding-bottom: 20px;
  }
  .hero-3 {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: hsl(38, 22%, 93%);
    padding-bottom: 80px;
  }
  .container {
    width: 100%;
    margin: auto;
    padding-top: 20px;
  }
  footer {
    background: linear-gradient(rgba(166, 106, 219, 0.6), rgba(166, 106, 187, 0.6));
    padding: 40px 0;
    color: #505050;
    font-family: 'Lucida Sans Regular';
  }
  .footer-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .top {
    margin-bottom: 20px;
  }
  .media-icons {
    display: flex;
  }
  .media-icons a {
    background-color: #fff;
    color: #A66ABB; 
    font-size: 24px;
    margin: 0 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .media-icons a:hover {
    background-color: #e271d9;
    color: #fff;
  }
  .link-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 40px;
    text-align: center;
    margin-top: 20px;
  }
  .link-boxes .box {
    list-style: none;
  }
  .link-boxes .box li {
    margin: 10px 0;
  }
  .link-boxes .box .link_name {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-decoration: underline;
  }
  .link-boxes .box a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .link-boxes .box a:hover {
    color: #59f4ff;
  }