body{
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background-color: black;
    color: white;
}
h1, h2{
    font-family: 'Roboto Mono', 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 2px;
    font-weight: 400;
}
figure{
    display: inline-block;
    margin: 0px;
    color: lightgrey;
    font-style: italic;
    font-size: 14px;
    text-align: center;
}
a{
    color: #BBB;
    transition: all .3s;
    text-decoration: none;
}
a:hover{
    opacity: .7;
}

.sidebar {
    height: 100%;
    width: 60px;
    position: fixed;
    top: 0;
    left: 0;
    overflow-x: hidden;
    padding-top: 20px;
    border-style: none solid none none;
    border-color: white;
    background-color: black;
    padding: 0;
}
.side2{
    height: 100%;
    opacity: 0;
    background-color: black;
    transition: all 0.3s;
}
.side2:hover{
    opacity: 1;
}
.sidebar a{
    color: white;
    display: block;
    text-align: center;
    padding: 20px;
}
.sidebar a:hover{
    opacity: 1;
    color: black;
    background-color: white;
}
.sidebar h1{
    writing-mode: vertical-rl;
    text-orientation: upright;
    position: absolute;
    margin-left: 10px;
    z-index: -1;
    margin-top: 30px;
}
.main{
    margin-left: 60px;
    padding: 0px 10px;
}
.main img{
    height: 25vw;
}
.section{
    border-left: 3px;
    padding-left: 10px;
    border-color: grey;
    border-style: none none none solid;
}