p {
    text-align: justify;
}

.contenttable {
   display: table;
   width: 100%;
   margin-left: auto;
   margin-right: auto;
}

.contentrow {
    display: table-row;
}

.contentcell {
    display: table-cell;

}

#maincontent {
    padding: 5 20 30 0;
    width: 75%;
    overflow: hidden;
}

@media (max-width: 600px) {
    aside {
        display: none;
    }
}

@media (min-width: 1000px) {
    aside {
        display: table-cell;
        padding: 5 5 5 0;
        position: fixed;
    }
}

@media (min-width: 1000px) {
    aside {
        display: table-cell;
    }
}

aside a:link {
    color: black;  
}

aside a:visited {
    color: black;
}

aside a:hover { 
    color: grey;
}

.animation_button {
    width: 60px;
    height: 40px;
    background: #AADDF8;
    color: #ffffff;
    position: static;
    font-weight: bold;
    font-size: 15px;
    padding: 10px;
    float: left;
    margin: 5px;   
    transition-property: width, height, transform, background, font-size;
    transition-duration: 1s, 1s, 1s, 1s, 1s;
    border-radius: 5px;
    overflow: hidden;
}

.animation_button:hover {
    width: 120px;
    height: 80px;
    background: #2B2F88;
    color: #ffffff;
    position: static;
    font-weight: bold;
    font-size: 20px;
    padding: 10px;
    float: left;
    margin: 5px;
    border-radius: 5px;
}

@keyframes rotation { 
  from { 
    transform: rotate(0) 
  } 
  to { 
    transform: rotate(360deg) 
  } 
}

.rotating_button {
    width: 60px;
    height: 40px;
    background: #AADDF8;
    color: #ffffff;
    position: static;
    font-weight: bold;
    font-size: 15px;
    padding: 10px;
    float: left;
    margin: 5px; 
    transition-property: width, height, transform, background, font-size;
    transition-duration: 1s, 1s, 1s, 1s, 1s;
}

.rotating_button:hover {
    animation: rotation 5s;
    background: #2B2F88;
}

.table img {
    padding-bottom: 50px;
    padding-left: 20px;
    transition-property: width, height, transform;
    transition-duration: 1s, 1s, 1s;

}

.table img:hover {
    height: 100px;
    padding-left: 0;
    padding-bottom: 20px;
}

svg {
    width: 130px;
}

.sidelink {
    padding-bottom: 5px;
}