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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(0, 0%, 8%);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  background-color: hsl(0, 0%, 12%);
  border-radius: 10px;
}
.social {
  margin: 30px 20px;
}

#head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 20px 10px;
}

.par {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.jess {
  color: white;
  font-size: 24px;
  font-weight: 500;
  margin-top: 10px;
}
.lon {
  color: hsl(75, 94%, 57%);
  font-size: 14px;
  margin-bottom: 6px;
  padding-top: 8px;
  padding-left: 7px;
  font-weight: 600;
}
.web {
  color: white;
  padding: 20px 0;
}

.btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 350px;
}

button {
  display: inline-block;
  background: hsl(0, 0%, 20%);
  font-family: "Inter", sans-serif;
  color: white;
  font-weight: 600;
  padding: 10px 120px;
  margin: 5px;
  border: transparent;
  border-radius: 5px;
  width: 100%;
}
button:hover {
    background: hsl(75, 94%, 57%);
    color: black;
    cursor:grab;
}