@import url(./base.css);

header {
  background: linear-gradient(#1b182838, #1b182838),
    url("/assets/images/bg-about.jpg");
  height: 100vh;
  width: 100vw;
  background-position: center;
  background-size: cover;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* position: relative; */
}

header h1 {
  font-weight: 100;
  font-size: 4rem;
}

header p {
  padding: 7rem 5rem;
  background-color: #674436e0;
  border-radius: 5px;
  max-width: 60vw;
  text-align: center;
}

aside {
  position: absolute;
  right: 0%;
  bottom: 0%;
  background-color: rgba(0, 0, 0, 0.198);
  backdrop-filter: blur(6px);
  padding: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

aside img {
  height: 100px;
  min-height: 100px;
  width: 100px;
  min-width: 100px;
  object-fit: cover;
  border-radius: 100%;
  margin-right: 1rem;
}

@media (max-width: 800px) {
  aside h1 {
    font-size: 3rem;
  }
  aside p {
    max-width: 100vw;
    padding: 4rem 3rem;
  }
}

/* hero section  */
