@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: #121212;
}
a {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
}
a span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #fff;
  animation: awp 1s;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  
}
nav,
main {
  padding: 12px;
}
main img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}
main {
  column-count: 5;
  column-gap: 16px;
}

ion-icon {
  color: #fff;
  font-size: 24px;

}

footer {
  height: 70px;
  width: 100%;
  position: fixed;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer {
  padding: 16px 28px;
  border-radius: 8px;
  display: flex;
  gap: 32px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.footer ion-icon:hover {
  transition: 0.3s;
  color: rgba(0, 0, 0, 0.2);
  
}

footer img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes awp {
  0% {
    width: 0;
  }
}

@media screen and (max-width: 720px){
  main{
    column-count: 2;
  }
  nav{
    overflow: scroll;
    width: 100%;
  }
}