* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

::selection {
  background-color: rgba(201, 116, 143, 0.4);
  color: #f3f5f5;
}

section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  color: #f3f5f5;
  background: #14110f;
  display: flex;
  align-items: center;
  justify-content: center;
}

section::before {
  content: "";
  position: absolute;
  height: 360px;
  width: 360px;
  border-radius: 50%;
  transform: translate(-225px, -150px);
  background: linear-gradient(90deg, #c9748f, #f3f5f5);
}

section::after {
  content: "";
  position: absolute;
  height: 360px;
  width: 360px;
  border-radius: 50%;
  transform: translate(225px, 150px);
  background: linear-gradient(90deg, #c4693a, #f3f5f5);
}

.container {
  position: relative;
  height: 337.5px;
  width: 562.5px;
  z-index: 100;
}

.container .card {
  height: 100%;
  width: 100%;
  padding: 37.5px;
  border-radius: 25px;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.front header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title h1 {
  font-size: 34px;
  font-weight: 600;
}

.fa-github,
.fa-linkedin {
  color: #f3f5f5;
  font-size: 32px;
  transition: transform 0.2s ease;
}

.socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fa-github:hover {
  transform: scale(1.2);
}

.fa-linkedin:hover {
  transform: scale(1.2);
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 42px;
  gap: 34px;
}

.content {
  font-size: 18px;
  font-weight: 200px;
  margin-top: 10px;
}

.label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(243, 245, 245, 0.5);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  margin-top: 10px;
  font-size: 18px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 245, 245, 0.25);
}

.tag:hover {
  background: rgba(243, 245, 245, 0.25);
}
