@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
body,
html {
  margin: 0;
  padding: 0;
}
body {
  background-image: url(./bg.jpg);
  background-size: 100%;
  font-family: "Jost", sans-serif;
}
div.container {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  backdrop-filter: blur(1px);
}
div.intro {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  backdrop-filter: blur(2rem);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 1rem 0.25rem rgba(0, 0, 0, 0.1);
  width: fit-content;
  border-radius: 0.5rem;
}
img {
  position: absolute;
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 1rem 0.25rem rgba(0, 0, 0, 0.1);
  border: ivory 2px solid;
}
h1 {
  color: darkslategray;
  margin: 0;
  font-weight: 500;
  letter-spacing: 1.5px;
}
p {
  color: #1c1c1c;
  margin: 0;
  letter-spacing: 0.75px;
  font-size: 1.2rem;
  margin: 0.25rem 0;
}
hr {
  border: none;
  margin: 1rem 0;
  border-top: rgba(0, 0, 0, 0.25) 1px solid;
}
