@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

*{
  font-family: "Geist", sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  background-image: url("bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: black;
  font-family: Arial, sans-serif;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero h1 {
  position: relative;
  letter-spacing: 0.2em;
  font-weight: 600
}

.hero p {
  position: relative;
  letter-spacing: 0.2em;
  font-weight: 400;
  width: 50%;
  text-align: center;
}

.profile{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}
