body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HERO SECTION */
.hero {
  height: 100vh;

  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("project.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* MAIN CONTENT */
.content {
  display: flex;
  align-items: center;
  gap: 50px;
  color: white;
}

/* TEXT SIDE */
.text h1 {
  font-size: 40px;
  margin: 0;
}

.role {
  font-size: 20px;
  margin: 10px 0;
}

.links a {
  display: inline-block;
  margin-right: 15px;
  padding: 10px 15px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* IMAGE SIDE */
.image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;  
  border: 4px solid white;
}