body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px;
  background-color: #f8f8f8;
}

.card {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  flex: 0 0 calc(25% - 60px);
  margin: 30px;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.info {
  font-size: 20px;
  line-height: 1.6;
  color: #444;
}



.social-icon {
  width: 35px;
  height: 35px;
  margin: 0 10px;
  filter: invert(100%);
  transition: all 0.3s ease;
}

.social-icon:hover {
  filter: invert(50%);
  transform: translateY(-5px);
}

.no-ads-message {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 50px 0;
  color: #333;
}

@media only screen and (max-width: 480px) {
  .card {
    flex: 0 0 100%;
    margin: 30px 0;
  }
}


#FB {
  width: 35px;
  height: 35px;
}

#SC {
  width: 35px;
  height: 35px;
}

#TK {
  width: 35px;
  height: 35px;
}

#EM {
  width: 35px;
  height: 35px;
}
footer {
  position: fixed;
}