* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
:root {
  background-color: hsl(0, 0%, 8%);
  --mainColor: hsl(0, 0%, 12%);
  --buttonColor: hsl(0, 0%, 20%);
}
main {
  font-family: "inter", sans-serif;
  border-radius: 0.6rem;
  background-color: var(--mainColor);
  width: 25%;
  color: white;
  text-align: center;
}

img {
  width: 19%;
  object-fit: cover;
  margin: 1.9em 0 1em 0;
  border-radius: 3rem;
}

h1 {
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.7em;
}
.location {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.6em;
  color: hsl(75, 94%, 57%);
}
.career {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 1.4em;
}
ul li {
  list-style-type: none;
}
a {
  display: inline-block;
  text-decoration: none;
  background-color: var(--buttonColor);
  color: white;
  width: 80%;
  margin-bottom: 1rem;
  padding: 0.8em 0 0.8em 0;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
li:last-child {
  margin-bottom: 1em;
}
a:hover {
  background-color: hsl(75, 94%, 57%);
  color: black;
  transition: all 4ms linear 1ms;
}
