﻿/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
  font-family: "Arial", sans-serif;
  color: #333;
}

/* Container increased by 10% */
.container {
  text-align: center;
  padding: 22px; /* 20px → +10% */
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.1); /* +10% */
  border-radius: 8.8px; /* 8px → +10% */
  max-width: 440px; /* 400px → +10% */
  width: 100%;
}

/* Profile picture increased 10% */
.profile-picture {
  width: 110px; /* 100 → +10% */
  height: 110px;
  border-radius: 50%;
  margin-bottom: 22px; /* 20 → +10% */
}

/* Heading increased */
h1 {
  font-size: 1.65rem; /* 1.5rem → +10% */
  margin-bottom: 11px;
}

/* Description text increased */
p {
  font-size: 1.1rem; /* 1rem → +10% */
  margin-bottom: 22px;
  color: #666;
}

/* Links section */
.links {
  display: flex;
  flex-direction: column;
}

/* Button increased 10% */
.button {
  display: inline-block;
  margin: 11px 0; /* 10 → +10% */
  padding: 11px 22px; /* 10x20 → +10% */
  text-decoration: none;
  font-size: 1.1rem; /* 1rem → +10% */
  color: #ffffff;
  background-color: #ae9a75;
  border-radius: 5.5px; /* 5px → +10% */
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #555;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f4f4f4;
}

::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 10px;
  border: 2px solid #f4f4f4;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Responsive adjustments (+10%) */
@media (max-width: 768px) {
  .container {
    padding: 16.5px; /* 15px → +10% */
  }

  h1 {
    font-size: 1.32rem; /* 1.2rem → +10% */
  }

  p {
    font-size: 0.99rem; /* 0.9rem → +10% */
  }

  .button {
    padding: 8.8px 17.6px; /* +10% */
    font-size: 0.99rem; /* +10% */
  }
}

/* Social icons increased 10% */
.social-icons {
  margin-top: 16.5px; /* 15 → +10% */
  display: flex;
  gap: 19.8px; /* 18px → +10% */
  justify-content: center;
}

.social-icons a svg {
  width: 24.2px; /* 22px → +10% */
  height: 24.2px;
  color: #000;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a:hover svg {
  transform: scale(1.12);
  opacity: 0.7;
}
