*,
*::before,
*::after{
  box-sizing: border-box;
}

:root {
  --background: #fff;
  --foreground: #000;
  --brand-primary: rgba(141, 185, 229, 1); /* blue */
  --brand-secondary: rgba(255, 81, 19, 1); /* reddish-orange */

  --link-primary: rgb(40, 108, 177, 1); /* Darker shade of brand-primary for accessibility. */
  --link-secondary: hsl(15.8, 100%, 41.7%); /* Darker shade of brand-secondary for accessibility. */

  
  background-blend-mode: darken;
  font: normal 10px / 1.3 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;

}

html, body {
  height: inherit;
  width: inherit;
  background-color: white;
}

body::after {
  content: ' ';
  background-image: url('TEN21Global_MasterLogo_grayed.webp');
  background-size: 150vh auto;
  background-position: center center;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

body {
  font-size: 3rem;
  padding: 2rem;
  margin: inherit;
}

main {
  background: transparent;
  position: relative;
  z-index: 1;
  inline-block: auto;
}

img {
  block-size: auto;
  display: block;
  inline-size: 50vw;
  margin-inline: auto;
  max-width: 389.73px;
}

h1 {
  line-height: 1;
}


a {
  color: inherit;
  text-decoration: none;
}

.email {
  color: var(--link-primary);
  text-decoration: underline;
  text-decoration-thickness: .2rem;
  font-size: 2.6rem;
}

h1, p {
  margin-block: 0;
  text-align: center;
}

a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform ease-in 100ms;
  margin: auto;
  align-items: center;
  max-width: 80vw;
}

a:is(:hover, :focus) {
  transform: scale(1.1);
}

a:hover .email {
  color: var(--brand-secondary);
}
