@mixin center(){
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
      left:50%;
      top:50%;
  }
  
  
  @import url(https://fonts.googleapis.com/css?family=Raleway:400,,800,900);


  html{
    width:100%;
    height: 100%;
  }
  body{
    font-family: 'Raleway', sans-serif;
  }
  
  .titlecontainer{
    position:absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 5em);
    flex-flow: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: -webkit-linear-gradient(rgb(235, 236, 231), rgb(255, 255, 255));
    background: linear-gradient(rgb(235, 236, 231), rgb(255, 255, 255));
    @include center();
  }
  .title{
    font-weight: 800;
    color: rgb(29 97 110 / 49%);
    
    background: url("/assets/images/nebula.jpg") repeat;
    background-position: 40% 50%;
    -webkit-background-clip: text;
    position:relative;
    text-align:center;
    
  }
  @media (min-width: 991px) {
    .title{
        font-size:120px;
        line-height:90px;
        letter-spacing: -8px;
        }
  }
  @media (max-width: 991px) {
    .title{
        font-size: 80px;
        line-height: 60px;
        letter-spacing: -4px;
      }
  }

  .subtitle{
    display: block;
    text-align: center;
    text-transform: uppercase;
    padding-top:10px;
  }
  .link-2{
    margin-top: 80px;
    display: flex;
    align-items: center;
  }
  .link{
      margin-top: 20px;
      display: flex;
      align-items: center;
  }
  .link a{
      text-decoration: none;
      font-weight: bolder;
  }
  .link-2 a{
    text-decoration: none;
    font-weight: bolder;
}
.link a:link    {color:#18616a;}
.link a:visited {color:#18616a;}
.link a:hover   {color:#519aa9;}
.link a:active  {color:#18616a;}

* {
    box-sizing: border-box;
  }

  .container {
    margin-top: 20px;
    margin-left: 20px;
  }
  
  .box {
    width: 30vmin;
    height: 30vmin;

    position: relative;
    
    
  }
  .box::before {
      /*
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    transform: scale(1.42);
    */
  }

  
  .spin-container {
    width: 100%;
    height: 100%;
    animation: spin 12s linear infinite;
    position: relative;
  }
  
  .shape {
    width: 100%;
    height: 100%;
    transition: border-radius 1s ease-out;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite both alternate;
    position: absolute;
    overflow: hidden;
    z-index: 5;
  }
  
  .bd {
    width: 142%;
    height: 142%;
    position: absolute;
    left: -21%;
    top: -21%;
    background: url(/assets/images/profile.jpg);
    background-size: 80%;
    background-position: center center;
    display: flex;
    color: #003;
    font-size: 5vw;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    animation: spin 12s linear infinite reverse;
    opacity: 1;
    z-index: 2;
  }
  
  @keyframes morph {
    0% {border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;} 
    100% {border-radius: 40% 60%;} 
  }
  
  @keyframes spin {
    to {
      transform: rotate(1turn);
    }
}