html {
    height: 110%;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(100, 100, 100, 1), rgba(100, 100, 100, 0));
}

#dateDiv {
    width: 350px;
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 10pt;
    text-align: right;
    font-weight: bold;
    color: #FFF;
}

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

article {
    margin: 120px 15px 0 15px;
}

.col {
    padding: 10px;
    margin: 5px;
    border: 1px solid #000;
    border-radius: 10px;
}

aside#aside {
    width: 300px;
    position: fixed;
    height: 75%;
    left: 10px;
    bottom: 20px;
    background: #AAA;
    overflow: scroll;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 3px 3px 3px #555;
    z-index: 10;
    transition: all .3s;
}

aside#aside.aside {
    left: -310px;
}

button#asideTrigger {
    position: fixed;
    left: 320px;
    bottom: 20px;
    transform: rotate(90deg);
    z-index: 10;
    transition: all .5s;
}

button#asideTrigger.asideTrigger {
    left: 10px;
}

#cv {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    cursor: crosshair;
}

#cv.cv {
    display: none;
}

.col-sm-5 {
    border: 1px solid #000;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
}