body {
  margin: 0;
  font-family: 'Ford Antenna', sans-serif;
  background: white;
  color: white;
  text-align: center;
  overflow-x: hidden;
}
header {
  padding: 20px 0 0 0;
  animation: fadeIn 1s ease-out;

  background: #1700F4;
}
.logo {
  width: 300px;
  margin-bottom: 20px;
}
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1500px;
  animation: slideUp 1.2s ease-out;
  flex-wrap: wrap;
  margin: 30px auto 0;
}
.card {
  width: calc(40% - 40px);
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s;
}
.card:hover {
  transform: scale(1.05);
}
.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideUp { from { transform: translateY(40px); opacity:0 } to { transform:translateY(0); opacity:1 } }
@media(max-width:1200px){
  .card { width: 90%; }
}

footer {
  background: #151515;
  padding: 30px 0;
  color: #fff;
  font-family: inherit;
}

footer .container {
  max-width: 1400px;
  margin: 0 auto;
}

footer p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

footer .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  gap: 40px;
}

footer .nav-link {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.9;
  text-decoration: none;
  transition: opacity .2s ease;
}

footer .nav-link:hover {
  opacity: 1;
}

footer .nav-item {
  display: flex;
  align-items: center;
}

footer img {
  height: 26px;
  margin-left: 20px;
}

@media (max-width: 768px) {
  footer {
    text-align: center;
  }

  footer .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  footer .nav {
    flex-direction: column;
    gap: 15px;
  }

  footer img {
    margin: 10px auto 0;
  }
}
