:root {
    --hue: 0deg;
    --color: rgba(0, 0, 0, 0.3);
}

@font-face {
    font-family: dtm;
    src: url(/o/DTM-Mono.otf);
}

html, body{
    height: 100%;
    margin: 0;
    padding: 0;
    color: white;
}

.contentbox {
    display: flex;
    flex-direction: row;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0);
    box-sizing: border-box;
    padding: 1%;
    height: 100%;
}

a {
    color: rgba(255, 255, 255, 0);
}

.category {
    border-bottom: 2px solid rgba(255, 255, 255, 0.21);
    font-weight: bold;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 1%;
    width: 92%;
}

#optiontray {
    display: flex;
    width: 20%;
    height: 100%;
    justify-content: left;
    align-items: left;
    flex-direction: column;
    border-right: 2px solid rgba(255, 255, 255, 0.21);
}

#extratray {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content:end;
    align-items: left;
    flex-direction: column;
}

#optionbar {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content:end;
    align-items: center;
    flex-direction: column;
}

#notifmessage {
    font-family: dtm;
}

#download {
    display: flex;
    justify-content:start;
    align-items: left;
    flex-direction: row;
}

#interactionfield {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: left;
    align-items: left;
    flex-direction: column;
    padding: 1%;
}

#notificationcontainer {
    display: none;
    width: 100%;
    height: 100%;
}

#notificationbg {
    display: flex; 
    top:0px;
    left: 0px;
    width: 100%;
    height: 100%;
    position:absolute;
    background-color: var(--color);
    animation: darkenbg 0.3s ease 0s 1;
}


#notification {
    display: none;
    position:absolute;
    flex-direction: column;
    background: rgb(0, 0, 0);
    border-radius: 0px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 8px solid rgb(255, 255, 255);
    padding: 1%;
    justify-content: start;
    align-items: center;
    width: 40%;
    height: 55%;
    top:50%;
    left:50%;
    transform-origin:0% 0%;
    animation: notification 1s ease 0s infinite normal none;
}

#notification button {
    height: 50px;
    width: 500px;
} 

.hspacer {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    width: 90%;
}


.selected {
    display: flex;
    background: rgba(255, 255, 255, 0);
    border: 2px solid rgba(255, 255, 255, 0);
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    width: 94%;
    height: 48px;
    justify-content: left;
    align-items: center;
    color: white;
    font-size: 16px;
}

#headerlogo {
    display: flex;
    width: 100%;
    height: 12%;
    justify-content: center;
    align-items: left;
    flex-direction: row;
    padding: 1%;
    font-family:Georgia, 'Times New Roman', Times, serif;
    color: #5FB2CC
}

#orca {
    padding: 0px;
}

@keyframes notification {
	0% {
		opacity: 1;
		transform: scale(1.1) translate(-50%, -50%);
	}

	10% {
		opacity: 1;
		transform: scale(0.9) translate(-50%, -50%);
	}

	20% {
		opacity: 1;
		transform: scale(1.05) translate(-50%, -50%);
	}

	30% {
		opacity: 1;
		transform: scale(0.95) translate(-50%, -50%);
	}

	40% {
		opacity: 1;
		transform: scale(1.03) translate(-50%, -50%);
	}

	50% {
		opacity: 1;
		transform: scale(0.99) translate(-50%, -50%);
	}

	60% {
		opacity: 1;
		transform: scale(1) translate(-50%, -50%);
	}

	100% {
		opacity: 1;
		transform: scale(1) translate(-50%, -50%);
	}

}

  @keyframes rotate-center-normal {
    0% { transform: rotate(0) translate(0%, 500%); }
    100% { transform: rotate(360deg);} }

@keyframes darkenbg {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes enlargeout {
	0% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1.1);
	}
}

@keyframes enlargein {
	0% {
		transform: scale(2);
	}

	100% {
		transform: scale(1.0);
	}
}

@keyframes enlargeoutsmall {
	0% {
		transform: scale(1.025);
	}

	100% {
		transform: scale(1.05);
	}
}

@keyframes enlargeinsmall {
	0% {
		transform: scale(1.025);
	}

	100% {
		transform: scale(1.0);
	}
}