@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500&family=Open+Sans&display=swap");
html, body {
  background-color: #202124;
  color: #e8eaed;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0; }

.grid {
  display: flex;
  flex-direction: row;
  align-items: stretch; }

.column {
  height: 100%;
  flex: 1;
  background-color: #121213;
  transition: background-color .333s ease-in-out; }
  .column:hover {
    background-color: #121213; }
  @media only screen and (min-width: 600px) {
    .column {
      background-color: #202124;
      border-right: 1px solid #666666;
      border-left: 1px solid #000000; } }
  @media only screen and (max-width: 600px) {
    .column:has(> .identity) {
      background-color: #121213; } }

section {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center; }

.identity {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-self: flex-start;
  margin-top: 17vh;
  text-shadow: #000 1px 1px 1px;
  padding: 3em; }
  @media only screen and (max-width: 600px) {
    .identity {
      padding: 0;
      font-size: 1em; } }

.identity *::selection {
  background: #ffb7b7; }

.identity__first-name, .identity__last-name {
  font-size: 3.5em;
  font-family: 'Cormorant Garamond', serif;
  text-shadow: #000000 1px 1px; }

.identity__first-name {
  line-height: .5em; }

.identity__role {
  text-transform: uppercase;
  font-size: .85em;
  color: #929292; }

.identity__role, .identity__company {
  font-family: 'Open Sans', sans-serif; }

.identity__company {
  font-size: 1.115em; }
