@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");
/* font-family: "Poppins", sans-serif; */

@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
/* font-family: "JetBrains Mono", monospace; */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: #212529;
  color: #dee2e6;
  font-family: "JetBrains Mono", monospace;
  line-height: 1.5;
}

.main-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

header {
  position: fixed;
  top: 0;
  padding: 1rem 0;
  height: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  z-index: 10;
}

nav {
  min-width: 400px;
  max-width: 1200px;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 0.8rem;
  transition: all 0.1s ease-in-out;
}

nav a:hover,
nav a:active {
  color: white;
  font-weight: 700;
  background-color: #ffffff32;
}

.hero {
  padding: 2rem;
  min-height: 25rem;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  line-height: 1;

  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background-image: linear-gradient(to bottom, #ffffff00, #212529),
    url(/assets/gradient.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: 2.8rem;
}

.hero h4 {
  font-family: "JetBrains Mono", monospace;
}

.name {
  color: #ff775f;
}

.avatar {
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
  background-image: url(/assets/ryangosling.jpg);
  background-size: cover;
  box-shadow: 0 0 80px 10px #a304bc7a;
}

.image-container {
  display: flex;
  justify-content: center;
}

.asset {
  max-width: 150px;
  margin: 1rem;
}

section {
  border-top: 1px solid rgba(128, 0, 128, 0.797);
  padding: 2rem 0;
}

.logos-container {
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.logo {
  width: 85px;
}

.logo-larger {
  width: 125px;
}

.light {
  background-color: white;
  border-radius: 9999px;
  padding: 0.5rem;
}

.logos-container img {
  filter: drop-shadow(0 0 10px rgba(130, 107, 130, 0.408));
}

.three {
  place-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.two {
  place-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.projects-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.project-link {
  transition: all 0.1s ease-in-out;
  margin: 1rem;
  height: 5rem;
}

.project-link:hover {
  filter: drop-shadow(0 0 10px #faa3f875);
}

.links-container {
  margin: 2rem auto;
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.logo-link:hover {
  filter: drop-shadow(0 0 10px #faa3f875);
  transform: scale(1.05);
}

.wrapper {
  max-width: 50%;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
}

.download:hover {
  text-shadow: 0 0 10px tomato;
}
