@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;800&display=swap");
@font-face {
  font-family: "Neue Montreal";
  src: url("./PPNeueMontreal-Medium.otf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Manrope";
}

:root {
  background-color: black;
}

body {
  min-height: 100vh;
  background-color: black;
  color: white;
  background: radial-gradient(70.05% 167.65% at 119.47% -40.33%, #a30840 0%, #53044b 25.61%, #200332 52.59%, #03011a 73.68%, #000000 99.24%);
}

nav {
  height: 80px;
  width: 100%;
  display: flex;
  border-bottom: 1px solid #222;
  padding: 0 4rem;
}
nav li {
  list-style-type: none;
}
nav .links,
nav .logo {
  display: flex;
  gap: 2rem;
  height: 100%;
  align-items: center;
}
nav .links {
  flex-grow: 1;
  justify-content: right;
}
nav .button {
  border: 1px solid #eee;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
}
nav .button:hover {
  border-color: #761a97;
}
nav .button:hover a {
  color: #972dbe;
}
nav a {
  color: white;
  text-decoration: none;
}
nav a:hover {
  color: #972dbe;
}

.hero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.hero a {
  text-decoration: none;
}
.hero .call-to-actions {
  display: flex;
  gap: 1rem;
}
.hero .filled {
  padding: 14px 32px;
}
.hero .outlined {
  background: none;
  border: 2px solid #761a97;
  background: linear-gradient(270deg, #be9ccb -46.69%, #a21bd2 178.31%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
}
.hero h1 {
  font-weight: 800;
  font-size: 50px;
  width: 80%;
  background: linear-gradient(to right, #dddddd 0%, #c7c7c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  width: 60%;
  line-height: 30px;
  letter-spacing: 0.045em;
}
.hero button {
  padding: 12px 30px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(90deg, #512a91 0%, #761a97 100%);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  margin-bottom: 5rem;
}
.projects h1 {
  font-weight: 500;
  font-size: 70px;
  line-height: 96px;
  background: linear-gradient(268.31deg, #ffffff 52.82%, rgba(255, 255, 255, 0) 182.17%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  border: 1px solid #000000;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.projects .grid-container {
  display: grid;
  justify-content: center;
  row-gap: 5rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  margin: 2rem 0;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
.projects .card {
  aspect-ratio: 0.8;
  border: 3px solid #d3d3d3;
  border-radius: 16px;
  background-size: cover;
  background-image: url(public/sample.jpg);
  background-position: center;
  display: flex;
  flex-direction: column;
  z-index: 2;
  padding: 2rem;
}
.projects .card > * {
  z-index: 3;
}
.projects .card:hover {
  position: relative;
}
.projects .card:hover::after {
  content: "";
  display: flex;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.7764705882);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 2;
}
.projects .card:hover .desc {
  opacity: 1;
}
.projects .card:hover .chips {
  opacity: 1;
}
.projects .title {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
.projects .desc {
  opacity: 0;
  transition: opacity 0.3s;
  flex-grow: 1;
  display: flex;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  line-height: 2rem;
}
.projects .chips {
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  gap: 1rem;
}
.projects .chips a {
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, #512a91 0%, #761a97 100%);
  border-radius: 30px;
  padding: 6px 1.4rem;
  padding-right: 2rem;
  position: relative;
}
.projects .chips a:hover {
  background: linear-gradient(90deg, #5a339a 0%, #7e1ca1 100%);
}
.projects .chips a::after {
  content: "";
  background: url("public/cron.svg");
  width: 30px;
  height: 30px;
  top: 6px;
  right: 5px;
  position: absolute;
  display: inline-block;
}

footer {
  display: flex;
  padding: 0 4rem;
  height: 80px;
  border-top: 1px solid #222;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
footer > * {
  width: 100%;
}
footer p {
  text-align: center;
}
footer .spacer {
  display: flex;
  justify-content: right;
}
footer .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  width: -moz-min-content;
  width: min-content;
  gap: 1rem;
  padding: 4px 1rem;
  background: linear-gradient(93.53deg, rgba(39, 39, 39, 0.2) 1.24%, rgba(22, 22, 22, 0.2) 56.12%, rgba(36, 36, 36, 0.2) 98.27%);
  border: 1px solid #2b2b2b;
  border-radius: 16px;
}
footer .social-links img {
  margin-top: 6px;
}
footer .social-links img:hover {
  transform: scale(1.1);
}/*# sourceMappingURL=style.css.map */