@import "colour_schema.css";

/* background image classes
-------------------------------------------------- */
.bg-img{
    background-image: url("/static/images/background.png");
    background-repeat: repeat;
}
.bg-img.dark-theme{
    background-image: url("/static/images/background-dark.png");
    background-repeat: repeat;
}

/* easter egg
-------------------------------------------------- */
#overlay{
    z-index: 10;
    opacity: 0;
	position: fixed;
	display: flex;
	justify-content: center;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

#overlay.show{
    opacity: 1;
    pointer-events: auto;
}

.rotating-image
{
    -webkit-animation: animate-rotate 4.5s infinite;
    animation: animate-rotate 4.5s infinite;
}

/* Sticky footer styles
-------------------------------------------------- */
#body-content {
  margin-bottom: 6rem; /* Margin bottom by footer height */
}

.card:hover {
    box-shadow: 0px 0px 5px grey;
}
