* {
  box-sizing: border-box;
  margin: 0;
}

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

/* === Centered container === */

html,
body, .container {
  height: 100%;
}

body {
  background-color: #000;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
}

.v_center {
  justify-content: center;
}

.icons_desc {
  height: 25%;
}

.filler{
  height: 20%;
}

/* === Header === */

.header {
  color: #00af00;
  margin: 0;
  font-family: 'VT323', monospace;
  font-size: 3em;
  font-weight: normal;
}

/* === Logo === */
@media (max-width: 700px)
{
  #logo {
    min-width: 90%;
    max-height: 100%;
    max-width: 100%;
    height: auto;
  }
}

#logo {
  border-radius: 15%;
  margin-top: 10px;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

.logo-wrapper {
  margin: 0 auto;
  text-align: center;
  vertical-align: top;
  min-height: 80vh;
  height: 80%;
  width: 100%;
}

/* === Icons === */





.icons {
  margin-top: 30px;
}

.icons>a {
  display: inline-block;
  color: #fff;
}

.icons>a+a {
  padding: 0 5px;
}

.icons i {
  transition: all .25s ease-out;
}

.icons>a:hover i {
  transition: all .15s ease-out;
  transform: scale(1.5);
}
	      
	      
/* === Description === */
  .desc {
  display: flex;
  margin-top: 10px;
  }


.green-text {
  color: #00af00;
  font-family: 'VT323', monospace;
  font-size: 2.2em;
}

#text {
  max-width: 20em;
}

#bio {
  margin: 5% 0;
}

