html {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: clamp(16px, 4vw, 26px);
}

.page {
  height: 100vh;
  width: 100vw;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('./images/background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.card {
  height: 90vh;
  width: 90vw;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  /* border: 1px solid rgba(0, 0, 0, 0.3); */
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  overflow: hidden;
}
.menu {
  width: 84vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1vh;
}

.menu__item {
  flex-shrink: 0;
  margin-left: 2vw;
  font-size: 0.6rem;
  cursor: pointer;
}
.main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 2vh;
  flex: 1;
}
.profile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 2vw;
  width: 86vw;
  height: 15vh;
  overflow: visable;
}
.profile__border {
  border-radius: 50%;
  position: absolute;
  height: 30vh;
  width: 45vh;
  border: 2px solid white;
  left: -22vh;
  top: -13vh;
  transform: rotate(30deg);
  box-shadow: -2px -2px 10px black inset;
  z-index: -1;
}

.profile__img {
  height: 20vh;
  width: 20vh;
  border-radius: 50%;
  z-index: 2;
}
.profile__basic {
  flex: 1;
  margin-left: 10vw;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  position: relative;
}

.basic__name {
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.2rem;
}

.basic__title {
  margin: 1vh 0;
}
.basic__duration {
  color: gray;
}

.email {
  margin-top: 1vh;
  width: fit-content;
  text-align: center;
  border-bottom: 2px solid white;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 1rem;
  position: relative;
  color: white;
  cursor: pointer;
}
.email__icon {
  height: 2rem;
  position: absolute;
  left: -2rem;
  bottom: -0.3rem;
}

.info {
  margin-bottom: 2.5vh;
  margin-left: 2.5vw;
  max-width: 80vw;
  max-height: 62vh;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.info__title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 2vh;
  display: flex;
  align-items: center;
}
.info__title::before {
  content: ' ';
  height: 0.5rem;
  width: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.info__detail {
  font-size: 0.8rem;
  color: gray;
}
.info__keywords {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5vh;
}
.keywords {
  padding: 0.2rem 0.6rem;
  border: 1px solid gray;
  width: fit-content;
  border-radius: 50px;
  margin: 2px 4px;
  text-wrap: nowrap;
  font-size: 0.6rem;
}
