@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

body {
  background-color: #0b0d0c;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  color: white;
  font-style: normal;
}
main,
.logo {
  padding-inline: 2em;
  display: grid;
  align-items: center;
  justify-content: center;
  margin-block: 2em;
}
p {
  line-height: 28px;
  font-size: 18px;
  text-align: center;
  max-width: 800px;
}
.logo img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
}
.highlight {
  color: #bf91c1;
  font-weight: 700;
}
.social-icons a {
  text-decoration: none;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 50px;
  justify-content: center;
}

.social-icons a img {
  max-width: 40px;
  width: 100%;
}
@media (max-width: 600px) {
  p {
    font-size: 14px;
  }
  .social-icons a img{
    max-width: 30px;
  }
}
