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

body {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-image: url(./assets/bg2.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-wrapper {
  position: relative;
  min-height: 70%;
  width: 25%;
  background: linear-gradient(
    112.91deg,
    rgba(255, 255, 255, 0.51) 3.51%,
    rgba(255, 255, 255, 0) 111.71%
  );
  filter: drop-shadow(50px 60px 100px rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(70px);
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  justify-content: center;
  transform-style: preserve-3d;
  overflow: hidden;
  /* padding: 70px 0; */
}

.profile-img {
  width: 12em;
  height: 12em;
  background-image: url(./assets/me.jpg);
  background-size: cover;
  background-position: 0px;
  border-radius: 50%;
  margin-bottom: 2.1rem;
  position: relative;
  margin-top: 2rem;
}

.profile-img::before {
  position: absolute;
  content: "";
  width: 14em;
  height: 14em;
  z-index: -1;
  top: -16px;
  left: -16px;
  border-radius: 50%;
  background: linear-gradient(
    112.91deg,
    rgba(255, 255, 255, 0) 3.51%,
    rgba(255, 255, 255, 0) 111.71%
  );
  filter: drop-shadow(50px 60px 100px rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(70px);
}

.main-title {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.065em;
  margin-bottom: 1rem;
}

.sub-title {
  font-weight: 500;
  font-size: 1.2rem;
  opacity: 0.68;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

p {
  margin-bottom: 3px;
}

.media-wrapper {
  margin-bottom: 2rem;
  width: 50%;
  display: flex;
  justify-content: space-evenly;
}

a {
  text-decoration: none;
}

.btn-portfolio {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 13px 40px;
  background: linear-gradient(
    112.91deg,
    rgba(255, 255, 255, 0.05) 3.51%,
    rgba(255, 255, 255, 0) 111.71%
  );
  filter: drop-shadow(50px 60px 100px rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(70px);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  margin-bottom: 2rem;
}

#snow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1000;
}
