body {
  font-family: "Montserrat", Arial, sans-serif;
  background: #fff;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  color: #999999;
  margin: 0;
}

.container {
  --bg-image: url("bg_1.jpg.webp");
  --bg-image-opacity: 0.3;
  
  width: 100vw;
  height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    
  padding: 5px 5px;

  position: relative;
  isolation: isolate;;
}

.container::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: white;

  opacity: var(--bg-image-opacity);

  background-image: var(--bg-image);
  background-size: cover;
  background-position: center center;
}

img {
  width: 200px;
  border-radius: 50%;
}

h1 {
  font-family: "Poppins", Arial, sans-serif;
  color: #000000;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;

  line-height: 1.5;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

p {
  overflow-y: auto;

  margin-right: 15%;
  margin-left: 15%;
  margin-top: 5px;

  font-size: 18px;
  font-weight: 500;
  color: #999999;

  text-align: center !important;
}

a {
  color: #999999;
}
