@font-face {
  font-family: 'DM Sans';
  src: url('/DMSans.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal italic;
  font-display: swap;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #ffffff;
  color: #000000;
  font-family: "DM Sans", sans-serif;
  margin: 0;
  letter-spacing: -0.07em;
  position: relative;
  overflow: hidden;
  margin-top: -2.5%;
}

.main-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  position: relative;
}

.abricot-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.container {
  max-width: 375px;
  text-align: center;
  padding: 20px;
  z-index: 3;
  opacity: 0;
  transform: scale(0.95);
  animation: zoomFadeIn 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes zoomFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid;
  border-color: #000000;
  margin-bottom: -16px;
}

h1 {
  font-weight: 700;
  letter-spacing: -0.07em;
  margin-bottom: -8px;
}

h2 {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 0px;
}

.btn {
  display: block;
  background-color: #000000;
  color: #ffffff;
  padding: 20px 60px;
  margin: 0 auto 4px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  max-width: 100%;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.btn:hover {
  background-color: #252525;
  transform: scale(1.02);
}

p {
  font-size: 0.9rem;
  line-height: 25%;
}

.btn-notif {
  position: relative;
}

.btn-notif::after {
  content: "100/10 😋";
  position: absolute;
  top: -10px;
  right: -10px;
  background: #74c475;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 8px;
  border-radius: 10px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social ul {
	display: flex;
	justify-content: center;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.social ul li a {
	color: #000;
	font-size: 2rem;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social ul li a svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
	transition: fill 0.3s ease;
}

.social ul li a:hover {
	color: #252525;
}

.contact-info svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
  margin: 0 auto 8px auto;
}

#email {
  cursor: pointer;
}
