@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden;
}

footer {
  width: 100%;
  height: 200px;
  background: #181818;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
footer a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
footer a:hover {
  text-decoration: underline;
}

section {
  width: 100%;
  height: 100%;
  background-image: url(../imgs/bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
}
section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 150px 0;
  width: 100%;
  height: auto;
}
section .container .box-link {
  width: 600px;
  text-decoration: none;
  color: #fff;
}
section .container .box-link .box {
  width: auto;
  height: 500px;
  border: 3px solid #fff;
  border-radius: 10px;
  margin: 20px;
  padding: 20px;
  transition: 0.3s all ease-in-out;
}
section .container .box-link .box:hover {
  border: 3px solid #27d317;
  filter: drop-shadow(0 0 10px #27d317);
}
section .container .box-link .box h2 {
  margin-bottom: 20px;
}
section .container .box-link .box p {
  padding: 0;
  margin: 0;
}
section .container .box-link .box .img {
  width: 250px;
}
section .container .box-link .box .img img {
  width: 100%;
  margin-bottom: 10px;
}
section .container .box-link .box .website {
  outline: none;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  section .container {
    padding: 40px 0;
  }
}/*# sourceMappingURL=index.css.map */