body{
    background-color:rgb(255,255,255);

    font-family: "Verdana";
    font-size: 18px;
}


#statusbar {
    height:40px;
    top:0px;
    left: 11vmin;
    right: 0;
    margin-top:0px;
    position: absolute;
    background: rgb(240,240,240);
}

#content {
    margin-top: 10px;
    font-family: "Verdana";
    width:93.5%; 
    margin-left: 20px;
    position: absolute;
    top: 40px;
    left: 11vmin;
    right: 0;
    bottom: 0;
    overflow: auto;
    padding: 0;
    border: 0;
}

#time {
    font-weight: bold;
    float: right;
    margin-right: 20px;
    margin-top: 8px;
    font-size: 20px;
}

#head {
    font-weight: bold;
    font-family: "Verdana";
    float: left;
    margin-left: 20px;
    margin-top: 5px;
    font-size: 24px;
}

#sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 11vmin;
    background-color: #232323;
    background-color: var(--agilox-grey);
    z-index: 30;
    background: rgb(240,240,240);
}

input[type=submit] {
    background-color: rgb(200, 200, 200); 
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    -webkit-border-radius:0;
    -webkit-appearance: none;
}

input[type=submit]:hover{
    background-color: rgb(170,170,170);
}

.buttons {
    width: 11vmin;
    height: 11vmin;
}

.link {
    display: block;
}

.buttons:hover {
    background-color: rgb(210,210,210);
}

.image_buttons {
    width: 7vmin;
    height: 7vmin;
    margin: 2vmin;
}

.image_buttons_small {
    width: 6vmin;
    height: 6vmin;
    margin: 2.5vmin;
}

a { 
    text-decoration: none;
    color: black;
}

.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 1s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}