*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    background-color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    color: #323232;
    position: relative;
    overflow: hidden;
    
}

a{
    text-decoration: none;
    color: #323232;

}


.main{
    width: 100%;
    height: 100%;
    
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    grid-template-rows: repeat(5,1fr);
    
    
}

.block{
    width: auto;
    padding: 28px 7px 7px 7px; 
    display: flex;
}
#back{
    grid-column: 2/3;
    display: flex;
    justify-content: center;
}
#es-info{
    grid-column: 1/2;
    grid-row: 2/5;
}
#canv{
    grid-column: 3/6;
    grid-row: 1/5;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
#links{
    grid-column: 1/2;
    grid-row: 4/5;
}
#links2{
    grid-column: 2/3;
    grid-row: 4/5;
}
#name p, #back p{
    font-size: 60px;
}
.text{
  width: 100%;  
  height: 100%;
  display: flex;
  flex-direction: column;
  
  
}
#links,#links2{
    display: flex;
    align-items: end;
    font-weight: bold;
    font-size: 12px;
}
.text p{
    font-size: 16px;
}
canvas{
    width: 100%;
    height: 100%;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: stretch;
    width: 100%;
    height: 100%;
    background: #888;
  }
  .container > div {
    width: 100%;
    height: 100%;
  }
  .vertical {
    flex-direction: column;
  }
  .colorblock {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  .animblock {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  
  .animblock div,
  .colorblock div {
    z-index: 10;
    width: 100%;
    animation: anim2 forwards;
    position: absolute;
    /*animation-timing-function: ease-out; /*cubic-bezier(0.001, 0.01, 0.002, 0.8, 0.06,0.01)*/
  }
  
  @keyframes anim2 {
    0% {
      height: 0%;
      
    }
  
    100% {
      height: 100%;
      
    }
  }