body {
  margin: 0;
  font-family: "Rubik", sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.profile img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 40px;
}

.info h1 {
  margin-top: 0;
  font-size: 42px;
  color: #0077cc;
}

.info h3,
.info h5 {
  margin: 8px 0;
  font-weight: normal;
}

.contacts {
  display: flex;
  gap: 15px;
  margin: 10px 0 30px;
}

.contacts img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s;
}

.contacts a:hover img {
  transform: scale(1.1);
}

h2 {
  margin-top: 40px;
  font-size: 26px;
  color: #222;
}

ul {
  list-style: none;
  padding-left: 0;
  columns: 2;
  margin-top: 10px;
}

ul li {
  margin-bottom: 6px;
}

.projects h3 {
  font-weight: normal;
}

.projects a {
  color: #0077cc;
  text-decoration: none;
  transition: color 0.2s;
}

.projects:hover a {
  color: #005fa3;
}
