/* Container */

.hero {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  flex: 1;
  overflow: hidden;
  background-color: var(--clr-neutral-200);
}

.hero-left {
  display: flex;
  grid: 1;
  align-items: center;
}

.vertical-name {
  grid-column: 2;
  display: flex;
  gap: var(--space-sm);
  white-space: nowrap;
  margin-top: 0;
  align-self: start;
}

.vertical-name span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: var(--fw-bold);
  font-size: 7rem;
  letter-spacing: -0.8rem;
  line-height: 0.7;
}

.hero-left .container{
  height: 80vh;
}

.about-me {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
  width: 400px;
  height: 100%;
  margin-top: 0;
  
}

.about-me span{

  text-align: left; 
  margin-bottom: 30px;
}

.hero-right {
  display: grid;
  height: 100%;
  overflow: hidden;
}

.hero-right img {
  grid-column: 1;
  grid-row: 1 / 1;
  width: 100%;
  height: 81vh;
  object-fit: cover;
  display: block;
}

.hero .actions {
  grid-area: 1 / 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 2rem;
  z-index: 2;
}

/*Hidden-Elements*/

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  overflow: hidden;
}

