@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  background-color: #f4f4f4;
  color: #333;
  text-align: center;
}


main {
  padding-top: 60px;
  min-height: 90vh;
}

.main-title {
  margin-bottom: 50px;
}

.logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.logos a img {
  width: 180px;
  box-shadow: 7px 8px 8px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: 0.5s all ease;
}
.logos a img:hover {
  transform: scale(1.02);
}


footer p {
  text-align: center;
  font-size: 16px;
}



@media screen and (max-width: 767px) {
  p {
    padding: 60px 0 40px 0;
  }
  .logos a img {
    width: 100px;
  }
}
