@font-face {
  font-family: 'Riforma';
  font-style: normal;
  src: url('utils/RiformaLLWeb-Regular.ttf'); /* IE9 Compat Modes */
}

html,
body {
  height: 100%;
  background-color: white;
  font-family: Riforma, sans-serif;
  font-weight: normal;
  font-size: 100%;
  margin: 0px;
}

/* ---------------------------------------------- */
#loader-wrapper{
  position: fixed;
  width:100vw;
  height:100vh;
  top:0px;
  left:0px;
  background-color: AliceBlue;
}

.circle{
  position: absolute;
}

#load-circle-1 {
  position: absolute;
  border: 5px solid transparent;
  border-radius: 50%;
  border-top: 5px solid black;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
  top: -webkit-calc(50% - 60px);
  left: -webkit-calc(50% - 60px);
}

#load-circle-2 {
  position: absolute;
  border: 5px solid transparent;
  border-radius: 50%;
  border-top: 5px solid black;
  width: 110px;
  height: 110px;
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
  top: -webkit-calc(50% - 60px);
  left: -webkit-calc(50% - 60px);
}


/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ---------------------------------------------- */

#header{
  position:fixed;
  top:0px;
  left:0px;
  width:100%;
  height:50px;
  z-index:3000;
}
.header-block{
  display: inline-block;
  height:100%;
}

.header-block a{
  padding: 0px 10px;
  line-height: 50px;
  color:black;
  cursor: pointer;
  text-decoration: none;
}


.stick-to-left{
  padding-left:10px;
}
.stick-to-right{
  float:right;
  padding-right:10px;
}

#full-email{
  display: block;
}

#short-email{
  display: none;
}


#about-section{
  position: fixed;
  display: none;
  background-color:rgba(255, 255,255, 0.5);
  top:0px;
  height:100%;
  width:100%;
  z-index: 2999;
}

#toggle-bio{
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  display: table;
}

#toggle-bio p{
  padding: 0px 100px;
  font-size: 2.5em;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

#toggle-bio a {
  color: black;
}

#credits {
  position: fixed;
  width:100%;
  bottom: 0px;
  font-size: 1em;
  text-align: center;
}

#credits a{
  text-decoration: none;
  color:black;
}

#credits a:hover{
  text-decoration: underline;
}

@media screen and (max-width: 530px){

  #full-email{
    display: none;
  }

  #short-email{
    display: block;
  }
}

@media screen and (max-width: 830px){
  #toggle-bio p {
    padding: 0px 20px;
    font-size: 2em;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
  }
}

@media screen and (max-width: 500px){
  #toggle-bio p {
    font-size: 16px;
  }
}

@media screen and (max-width: 385px){
.header-block a{
  padding: 0px 5px;
}
}
