*
{
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html,
body
{
    overflow: hidden;
    background-color: #069;
}

a{
  color: white;
}
a:hover{
  color: rgb(176, 176, 176);
}

.webgl
{
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

.content
{
    position: absolute;
    display: block;
    z-index: 99;
    left: 10%;
    right: 10%;
    top: 10%;
}

.box
{
    padding: 50px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 30px;
}
img
{
    width: 100%;
    height: auto;
    margin-top: 25px;
}

h3
{
    font-size: 35px;
    font-weight: 300;
    margin-top: 30px;
    margin-bottom: 20px;
    color: white;
}

p
{
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.342);
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.335) 0%, rgba(0, 0, 0, 0.187) 60%, rgba(0, 0, 0, 0) 92%); */
    font-family: Roboto;
    overflow: hidden;
  }
  /* .box:before, .box:after {
    content: "";
    position: absolute;
    left: 50%;
    min-width: 300vw;
    min-height: 300vw;
    background-color: #00000025;
    -webkit-animation-name: rotate;
            animation-name: rotate;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  .box:before {
    bottom: 5vh;
    border-radius: 45%;
    -webkit-animation-duration: 10s;
            animation-duration: 10s;
  }
  .box:after {
    bottom: 0vh;
    opacity: 0.5;
    border-radius: 47%;
    -webkit-animation-duration: 10s;
            animation-duration: 10s;
  }
  
  @-webkit-keyframes rotate {
    0% {
      transform: translate(-50%, 0) rotateZ(0deg);
    }
    50% {
      transform: translate(-50%, -2%) rotateZ(180deg);
    }
    100% {
      transform: translate(-50%, 0%) rotateZ(360deg);
    }
  }
  
  @keyframes rotate {
    0% {
      transform: translate(-50%, 0) rotateZ(0deg);
    }
    50% {
      transform: translate(-50%, -2%) rotateZ(180deg);
    }
    100% {
      transform: translate(-50%, 0%) rotateZ(360deg);
    }
  } */