html,
body{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Trainplanet';
    font-size: 1em;
    font-weight: normal;
    line-height: 1.4;
    color: #494968;
}

body *{
    box-sizing: border-box;
}

body *:focus{
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Poppins', sans-serif;
    margin: 0.5em 0;
}

h1{
    font-size: 52pt;
    font-weight: 700;
}

h2{
    font-size: 40pt;
    font-weight: 700;
}

h3{
    font-size: 30pt;
    font-weight: 700;
}

h4{
    font-size: 21pt;
    font-weight: 700;
}

h5{
    font-size: 18pt;
    font-weight: 600;
}

h6{
    font-size: 16pt;
    font-weight: 500;
}

p{
    margin: 1em 0;
}

a{
    color: #DB6484;
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

hr{
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #F5F5F7;
    margin: 2em 0;
    padding: 0;
}

code{
    display: block;
    white-space: pre;
    background-color: #eee;
    border-radius: 4px;
    padding: 5px;
}

button,
.button{
    display: block;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    box-shadow: none;
    border: none;
    margin: 3px;
    padding: 10px 20px;
    background: #DB6484;
    color: #FFF;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
}

.center{
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
}

.copy{
    cursor: pointer;
    transition: 0.2s all ease;
}

.copy:active{
    color: #DB6484;
}

.row{
    display: flex;
    flex-wrap: wrap;
    margin: -10px -10px 10px -10px;
}

.row .column{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 10px;
    padding: 20px;
    min-width: 300px;
    border-radius: 4px;
    flex-basis: calc(33.33% - 20px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.16);
}

aside{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 10px 0;
    background: #F5F5F7;
    font-size: 16px;
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.5);
}

aside .brand{
    display: flex;
    justify-content: center;
    padding: 10px 20px;
}

aside .brand img{
    width: 100%;
    max-width: 160px;
    height: auto;
}

aside nav{
    flex: 1;
}

aside nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

aside nav ul li a{
    display: block;
    padding: 15px 20px;
    color: inherit;
}

aside nav ul li a:hover{
    text-decoration: none;
    background: #DCDCDE;
}

aside nav ul li a.active{
    background: #DB6484;
    color: #FFFFFF;
}

aside footer{
    text-align: center;
    color: #808A9F;
    font-size: 13px;
}

main section{
    padding: 20px 40px;
    min-height: 100vh;
}