@font-face {
  font-family: visitor;
  src: url(fonts/visitor2.ttf);
}

@font-face {
  font-family: helveticaneue;
  src: url(fonts/HelveticaNeueMedium.otf);
}

html {
  display: flex;
  flex-direction: column;
  background: #081217;
}

body {
  align-self: center;
  width: 65%;
  min-height: 300px;
  background-image: linear-gradient(to right, #264246 -20%, #061015 100%);
  background-repeat: no-repeat;
  box-shadow: 1px 5px 30px #5a7974, inset 1px 5px 30px white;
  border-radius: 4px;
}

above {
  display: flex;
  background-image: url(assets/above.png);
  color: white;
  position: relative;
  z-index: 2;
  border-radius: 4px;
}

nav {
  display: flex;
  width: 400px;
  position: relative;
}

nav a {
  margin-left: 30px;
  margin-right: 20px;
  font-size: 14px;
  color: white; /* placeholder */
  transition: ease 0.5s text-shadow;
  height: min-content;
  font-family: visitor;
  text-decoration: none;
}

nav a:hover {
  text-shadow: white 0px 0px 4px;
  cursor: pointer;
}

.title {
  margin-top: 19px;
  height: 61px;
}

.title * {
  margin: 0px;
  padding-left: 30px;
  font-family: helveticaneue;
}

.static .one {
  position: absolute;
  left: 37.2%;
  top: 4px;
  z-index: 1;
  width: 45.3%;
  box-shadow: 1px 10px 20px #829e95;
}

.static .two {
  position: absolute;
  left: 17.5%;
  top: 16px;
  z-index: 1;
  width: 20.7%;
  box-shadow: 1px 5px 30px #5a7974;
}

main {
  margin-top: 20px!important;;
  margin: auto;
  border-radius: 3px;
  width: 95%;
  min-height: 200px;
  background-color: rgba(255, 255, 255, 0.3);
  grid-row: 1;
  position: relative;
  overflow: hidden;
  cursor: default;
  outline: none;
}

main:before {
	 content: '';
	 position: absolute;
	 left: 50%;
	 transform: translateX(-50%);
	 height: 33%;
	 background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
	 width: calc(100% - 0.875em);
	 border-radius: 8px;
	 top: 5%;
	 filter: blur(3px);
	 z-index: 2;
}

main:after {
	 content: '';
	 position: absolute;
	 left: 50%;
	 transform: translateX(-50%);
	 height: 33%;
	 background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4));
	 width: calc(100% - 1.25em);
	 border-radius: 0.75em;
	 bottom: 5%;
	 filter: blur(3px);
}

main h1 {
  font-family: helveticaneue;
  color: rgba(255, 255, 255, 0.6);
  font-size: 60px;
  letter-spacing: -3px;
  position: absolute;
  top: -21%;
  left: -1.5%;
}

.quick {
  margin-top: 8%;
  width: 100%;
  height: 10%;
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 40px;
}

.action {
  display: flex;
  flex-direction: column;
}

.icon:hover {
  filter: brightness(1.3)
}

.icon {
  width: 100px;
  height: 100px;
  transition: all ease 1s;
  align-self: center
}

.label {
  font-family: helveticaneue;
  align-self: center;
  text-align: center;
  margin: 0px;
}

