html {
    height: 110%;
}

body {
    font-size: 14pt;
    background-color: #000;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFF;
    z-index: 10;
}

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

main {
    margin: 150px 30px 0 15px;
    background: rgba(255, 255, 255, .8);
    border-radius: 10px;
    min-height: 80vh;
    padding: 10px;
}

#aR {
    width: 300px;
    position: fixed;
    left: -150px;
    margin-left: 50%;
    background: #FF0;
    border: 3px solid #F00;
    border-radius: 10px;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    z-index: 100;
}

.prodPic {
    filter: grayscale(60%);
    scale: .95;
    transition: all .4s;
}

.prodPic:hover {
    transform: rotate(-1deg);
    scale: 1;
    filter: grayscale(0%);
}

aside#asideRight {
    width: 300px;
    max-height: 70vh;
    overflow: auto;
    position: fixed;
    top: 30px;
    right: 10px;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px;
    background-color: #FFF;
    transition: all .3s;
    z-index: 100;
}

aside#asideRight.asideRight {
    right: -310px;
}

button#trigAsideRight {
    position: fixed;
    top: 50px;
    right: 320px;
    background-color: #FF0;
    color: #000;
    transition: all .5s;
    z-index: 100;
}

button#trigAsideRight.trigAsideRight {
    right: 10px;
    transform: rotate(90deg);
    font-size: 25pt;
    font-weight: bold;
}

aside#asideLeft {
    width: 300px;
    max-height: 70vh;
    overflow: auto;
    position: fixed;
    bottom: 30px;
    left: 10px;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px;
    background-color: #FFF;
    transition: all .3s;
    z-index: 100;
}

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

button#trigAsideLeft {
    position: fixed;
    bottom: 30px;
    left: 320px;
    background-color: #FF0;
    color: #000;
    transition: all .5s;
    z-index: 100;
}

button#trigAsideLeft.trigAsideLeft {
    left: 10px;
    transform: rotate(90deg);
    font-size: 25pt;
    font-weight: bold;
}