* {
	box-sizing: border-box;
}


html,
body {
  margin: 0;
	height: 100vh;
	width: 100vw;
}

.logo {
    position: absolute;
    top: 0;
    left: -2vw;
    height: 25vh;
    width: 25vw;
}

body {
	margin: 0;
	display: grid;
	place-items: center;
	background-color: #121420;
	font-family: system-ui, sans-serif;
}

nav,
.nav-item {
	display: flex;
}

nav {
    position: fixed;
    top: 0;
	border-radius: 6px;
	background-color: #1B2432;
	color: rgba(255, 255, 255, 0.6);
	text-shadow: 0 -2px 0 black;
	cursor: pointer;
	box-shadow: 1px 2px 4px rgb(20, 20, 20), 0 4px 12px rgb(10, 10, 10);
  z-index: 1;
}

.nav-item {
	flex-direction: column;
	font-size: 1.5vw;
	line-height: 1rem;
	align-items: center;
	min-width: 120px;
	justify-content: space-between;
	transition: all 80ms ease;

	&.active {
		color: white;
		text-shadow: 0 0 3px hsla(260, 100%, 70%, 0.7);
	}

	&:not(.active):hover {
		color: rgba(255, 255, 255, 0.87);
        font-size: 1.7vw;
	}


	&:not(:first-of-type) {
		border-left: 1px solid rgb(60, 60, 60);
	}
	&:not(:last-of-type) {
		border-right: 0.1rem solid black;
	}

	a {
		color: inherit;
		text-decoration: none;
		padding: 1ch;
	}
}



.headerText{
    color: #5c77a3;
    font-size: 5vw;
}

#hdr{}

#names, .placeholder{
  position: absolute;
  bottom: -110vh;
  font-size: 3vw;
  place-content: bottom;
}

.textBody{
    color: #727088;
    width: 45vw;
    text-align: center;
    margin-bottom: 50vh;
    font-size: 2.5vw;
}

.k{
    margin-bottom: auto;
    border: 1px solid #403F4C;
    border-radius: 15px;
}

table.blueTable {
    text-align: center;
    border-collapse: separate;
    border-radius: 5px;
    margin-bottom: 15vh;
  }
  table.blueTable td, table.blueTable th {
    border: 5px solid #1B2432;
    padding: 3px 2px;
    padding: 10px;

  }

  table.blueTable tbody td {
    font-size: 1.5vw;
    font-weight: bold;
    color: #727088;
  }

.prosLeft{
  position: fixed;
  width: 50vw;
  margin-left: -100vw;
}

.consRight{
  position: fixed;
  width: 50vw;
  margin-left: 50vw;
}

.examples{
  display: flex;
}

.exImg{
  width: 15%;
  height: 90%;
}

tr{
  display: block;
  padding-bottom: 18vh;
}

.keyImg{
  display: flex;
  padding-bottom: 1vh;
  align-items: center;
}

.key1{
  position: absolute;
  margin-left: 50vw;
  height: 40vh;
  width: 25vw;
  opacity: 0;
}

.key2{
  position: absolute;
  margin-left: -35vw;
  height: 40vh;
  width: 30vw;
  opacity: 0;
}

.key3{
  position: absolute;
  margin-left: 50vw;
  opacity: 0;
  height: 20vh;
  width: 15vw;
}

.income{
  height: 25vh;
  width: 45vw;
}