.footer {
  display: grid;
  width: 100%;
  height: 30vh;
  align-items: center;
  grid-template-rows: repeat(3, 1fr);
  background-color: #601a97;
}

.logo-round {
  display: flex;
  z-index: 1;
  margin-top: -60px;
  justify-content: center;
}
.logo-round img {
  height: 100px;
  border-radius: 300px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.footer-link {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 60px;
  gap: 2rem;
}
.footer-link2 {
  display: none;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 60px;
  gap: 1rem;
  padding: 5%;
}
.footer-link a {
  font-size: 1em;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-family: 'Roboto';
}
.footer-link a:hover {
  color: #e100ff;
}
.footer-bottom-line {
  display: flex;
  justify-content: space-between;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
  align-items: center;
  flex-direction: row;
}
.footer-bottom-line img {
  height: 24px;
  opacity: 0.6;
}
.footer-bottom-line p {
  font-size: 13px;
  font-weight: 300;
  font-family: 'Roboto';
  color: #fff;
}
.social-link a {
  font-size: 20px;
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
}
.social-link a:hover {
  color: #ff00ee;
}

@media (max-width: 500px) {
  .footer {
    background-color: #8428ed;
  }
  .logo-round {
    grid-row: 1;
  }
  .logo-round img {
    height: 80px;
  }
  .footer {
    grid-template-rows: repeat(3, 1fr);
    height: 35vh;
  }

  .footer-link {
    display: none;
    font-size: 0.9em;
  }

  .footer-link2 {
    display: flex;
    margin-bottom: 30px;
  }
  .footer-link2 a {
    font-size: 0.9em;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-family: 'Roboto';
  }
  .footer-link2 a:hover {
    color: #e100ff;
  }
  .footer-bottom-line {
    display: flex;
    flex-direction: column;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
  }

  .footer-bottom-line img {
    height: 20px;
    margin-bottom: 10px;
  }
  .footer-bottom-line p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .social-link a {
    font-size: 23px;
    margin-bottom: 20px;
    margin-right: 10px;
  }
}
