@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Righteous&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

:root {
  --primary-color: white;
  --secondary-color: #ff5b8f;
  --hover-color: #ff004f;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: black;
  margin: 0;
  color: var(--primary-color);
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
}

.container {
  text-align: center;
}

.highlight {
  color: var(--hover-color);
}

.navigation {
  width: 100%;
  overflow: hidden;
}

.navigation h1 {
  width: 100%;
  margin: 0;
  font-size: 50px;
  text-align: left;
  animation: title;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes title {
  0% {
    transform: translateX(-100%);
  }
  25% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

span {
  color: var(--hover-color);
}

.list-apps ul li {
  width: 60%;
  position: relative;
  list-style: none;
  margin: 50px auto;
  border: solid 1px var(--hover-color);
  padding: 40px;
  border-radius: 20px;
}

.list-apps ul li p {
  color: var(--hover-color);
}

.layer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), var(--hover-color));
  border-radius: 20px;
}

.layer a {
  text-decoration: none;
  background-color: var(--primary-color);
  border-radius: 30px;
  margin: 20px;
  padding: 10px 20px;
  color: var(--hover-color);
}

.list-apps ul li:hover .layer {
  content: "";
  height: 100%;
  transition-duration: 0.5s;
}

.list-apps ul li h2 {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 0;
}

.copyright {
  color: var(--primary-color);
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 25px 0;
  background: #262626;
  margin-top: 20px;
  font-weight: 3000;
  font-size: 18px;
}

.copyright i {
  color: var(--hover-color);
}

.home-link i {
  text-align: left;
  width: 100%;
  margin: 20px 0 0 20px;
  font-size: 30px;
  display: flex;
}

.home-link {
  text-decoration: none;
}

@media only screen and (max-width: 600px) {
  .body {
    margin: 0;
  }

  .navigation h1 {
    font-size: 40px;
  }

  .list-apps {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .layer a {
    text-decoration: none;
    background-color: var(--primary-color);
    border-radius: 20px;
    margin: 20px;
    padding: 10px 20px;
    color: var(--hover-color);
    font-size: 16px;
  }

  .list-apps ul li {
    margin: 10px 20px 40px 10px;
  }
}
