* {
  box-sizing: border-box;
  font-family: sans-serif;
  margin: 0;
}
body {
  min-height: 100vh;
  margin: 0 0 0 50px;
  width: 100%;
  max-width: 700px;
  padding: 0 30px;
  /* Gradient from black → dark gray → light gray → white */
  background: linear-gradient(135deg, #000000, #282828, #6b6a6a, #acaaaa);
  color: #ffffff; /* text color */
  font-family: Arial, sans-serif;
  background-repeat: no-repeat;
  background-size: cover;
}

.colored {
  display: inline-block;
  font-size: 55px;
  font-weight: bold;
  margin-top: 50px;
  top: 0px;

  /* The combined colors */
  background: linear-gradient(80deg, rgb(255, 255, 255), #b6f0ff);

  /* Makes the gradient show inside the text */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.profile {
  max-width: 300px;
  height: 300px;
  border-style: groove;
  border-radius: 50%;
  border-color: rgb(0, 0, 0);
  object-fit: cover;
  display: block;
  margin-left: 230px;
  margin-top: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.4s ease;
  opacity: 0;
  transform: translateY(12px) scale(0.995);
  animation: profileFadeIn 0.8s ease 0.15s forwards;
}
.title {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 20px;
}

h1,
h2 {
  color: #cccccc;
}
h1 {
  color: #cccccc;
}
h2 {
  margin-bottom: 10px;
  font-size: 40px;
}

p {
  color: #e3e0e0;
  width: 100%;
  max-width: 400px;
  margin-bottom: 10px;
  font-size: 15px;
}

@media (max-width: 600px) {
  body {
    padding: 0 15px;
    margin-left: 0;
  }
  .title {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .profile {
    max-width: 150px;
    max-height: 150px;
    margin: 0 auto;
  }
  p {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  body {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  body {
    max-width: 1200px;
  }
}
.social-icons img {
  margin-top: 0;
  margin-right: 20px;
  height: 50px;
  width: 50px;
}
.social-icons img:hover {
  opacity: 0.7;
}
.profile:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.35);
  transform: translateY(0) scale(1.02);
}

@keyframes profileFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
