body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:#ffffff
}

.logo {
  width: 30%;
  
}

h1 {
  font-weight: bold;
    font-size: 36px;
  font-family:'Courier New', Courier, monospace;
  color: black;
}
h1, h2, h3 {
  margin: 0px 0;
}

.icons {
    display: flex;
    justify-content: center;
}

.icons i {
    font-size: 24px;
    color: #ffffff;
}

.icons-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 22px;
  
}

.icons-row i {
  font-size: 28px;
  color: #ffffff;
}

.icon-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 1s;
}

.icon-link:hover i {
  color: #5102a0;
  transition: color 0.5s;
}




.services-row {
  display: flex;
  gap: 32px;
  margin-top: 22px;
  justify-content: center;
  width: 100%;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  font-weight: bold;
}

.services-list li {
  margin-bottom: 6px;
  font-size: 1rem;
}





.footer-img {
  display: block;
  margin: 16px auto 0 auto;
  width: 20%;
  height: 20%;
  border-radius: 0px;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 0px;
  opacity: 0.7;
}


