@font-face {
  font-family: uB; /* set name */
  src: url(Fonts/UniversityBold.woff2);
}

html {
    height: 110%;
}

body {
    background: linear-gradient(to right, rgb(0,0,0), rgb(50, 50, 50));
    color: #AAA;
}

header {
    background: linear-gradient(to right, rgb(0,0,0), rgb(50, 50, 50));
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

#wbtitle {
    font-family: uB;
    font-size: 40pt;
    font-weight: bold;
    font-style: italic;
}

#logo {
    height: 200px;
    margin: 5px;
    transition: all .3s;
}

article {
    margin: 220px 15px 15px 15px;
}

#asideTrigger {
    position: fixed;
    right: 320px;
    bottom: 20px;
    transition: all .5s;
    z-index: 30;
}

#asideTrigger.asideTrigger {
    right: 10px;
}

aside#aside {
    background-color: #FFF;
    width: 300px;
    height: 90%;
    overflow: scroll;
    color: #000;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 10px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    transition: all .3s;
    z-index: 30;
}

aside#aside.aside {
    right: -330px;
}

#cv {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background:  rgba(0, 0, 0, .5);
    z-index: 20;
}

#cv.cv {
    display: none;
}

th {
    position: sticky;
    top: 60px;
}