:root {
  --color-primary: #A2B0C6;
  --color-card: #F3ECE7;
  --color-secondary: #204FF5;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('./fonts/Paperlogy-1Thin.ttf') format('truetype');
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('./fonts/Paperlogy-2ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('./fonts/Paperlogy-3Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('./fonts/Paperlogy-4Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('./fonts/Paperlogy-5Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('./fonts/Paperlogy-6SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('./fonts/Paperlogy-7Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('./fonts/Paperlogy-8ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('./fonts/Paperlogy-9Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

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

.container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.background {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -999;
  background-color: white;
  display: flex;
}

.background-left {
  flex: 4;
  height: 100%;
  background-color: var(--color-primary);
}

.background-right {
  flex: 6;
  height: 100%;
}

.main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 40px;
  padding: 20px;
}

.profile-card {
  height: 600px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.profile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: var(--color-card);
  padding: 40px 80px;
  align-items: center;
}

.profile-image {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 10000px;
  background-color: white;
}

.namespace {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.namespace h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.namespace p {
  font-size: 1.5rem;
}

.profile-line {
  width: 52px;
  height: 2px;
  background-color: var(--color-secondary);
}

.profile-job {
  font-size: 1.25rem;
  letter-spacing: 2px;
  font-weight: 200;
  color: gray;
}

.social-links {
  width: 100%;
  padding: 16px 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  background-color: white;
}

.social-links a img {
  width: 24px;
  height: 24px;
}

.introduces {
  height: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
  flex-shrink: 0;
}

.greeting {
  font-size: 6rem;
  font-weight: 900;
}

.subtitle {
  font-size: 2rem;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 36px;
  border-radius: 1000px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  
}

.resume {
  background-color: var(--color-secondary);
  color: white;
}

.projects {
  border: 1px gray solid;
  background-color: white;
}

.paragraph {
  width: 100%;
  max-width: 500px;
  word-break: keep-all;
  color: #888;
  font-size: 1.25rem;
  margin-top: 24px;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-height: 700px) and (max-width: 1024px) {
  .background {
    gap: 16px;
  }

  .greeting {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .paragraph {
    margin-top: 16px;
    font-size: 1rem;
  }
}

.hashtags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background-color: #e0e0e0;
    color: #333;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
}
