/*Copyrighted by Christos
Do not use without permission.*/

html {
	height: 100%;
	width: 100%;
	display: block;
	box-sizing: border-box;
	overflow: hidden;
}

body {
	height: 100%;
	width: 100%;
	margin: 0px;
	display: block;
	box-sizing: border-box;
	/*background: white;*/
/*        background: repeating-linear-gradient(
          45deg,
          #ffcd41,
          #ffcd41 1px,
          #c49c2b 1px,
          #c49c2b 2px
        );*/
	font-family: 'Roboto Mono', monospace;
	/*padding: 8px;*/
}

body_container {
	display: block;
	background: #0a1628;
	height: 100%;
        box-shadow: 0 4px 4px 0 rgba(51,62,72,0.13), 0 4px 4px 0 rgba(51, 62, 72, 0.13) inset;
}

header {
	height: 15%;
/*	padding-left: 20px;*/
/*	color: #f5f5f5;
	background: linear-gradient(90deg, rgba(4,0,73,1) 0%, rgba(21,16,209,1) 100%);
        background: repeating-linear-gradient(
          -45deg,
	  rgba(4,0,73,1),
          rgba(4,0,73,1) 1px,
          rgba(21,16,160,1) 1px,
          rgba(21,16,160,1) 2px
        );*/
        box-shadow: 0 4px 4px 0 rgba(51,62,72,0.13), 0 4px 4px 0 rgba(51, 62, 72, 0.13);
	display: flex;
	position: relative;
}
music_links {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	margin:5px;
	box-sizing: border-box;
}
music_link img, social_link img {
	height: 30px;
	width: 30x;
}

album_music_links {
	display: inline-block;
}

input.phone_number, input.name, input.email{
    width: auto;
    border: 1px solid blue;
    border-radius: 5px;
    padding: 10px;
}

input[type="submit"]{
    width: auto;
    border: 1px solid blue;
    border-radius: 5px;
    padding: 10px;
    background-color: white;
    color: #032775;
    box-shadow: 0 4px 4px 0 rgba(51,62,72,0.13), 0 4px 4px 0 rgba(51, 62, 72, 0.13);
    margin: 2px;
}

img {
	display: none;
}

img.photos {
	height: auto;
	max-height: 300px;
	max-width: 100%;
}

header_title {
	font-family: 'Playfair Display', serif;
	/*font-family: 'Merienda', cursive;*/
	font-size: 2em;
	align-self: center;
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
}

header_menu {
	width: 100%;
	position: absolute;
	bottom: 0px;
}

button_top_left {
	position: absolute;
	left: 5px;
	top: 5px;
	border-radius: 0px;
}
button_top_right {
	position: absolute;
	right: 5px;
	top: 5px;
	border-radius: 0px;
}

h1 {
	margin-left: 5px;
}

main {
	height: 77%;
	width: 100%;
	padding-top: 10px;
	box-sizing: border-box;
	overflow: auto;
	padding: 10px;
/*	scroll-behavior: smooth;*/
}

text_container {
	display: block;
	background: #f8e6af;
	padding: 10px;
	border-radius: 20px;
        box-shadow: 0 4px 4px 0 rgba(51,62,72,0.13), 0 4px 4px 0 rgba(51, 62, 72, 0.13);
}
text_container::first-letter{
	font-size:150%;
}

canvas_container {
	height: 100%;
	width: 100%;
	display: block;
	box-sizing: border-box;
	padding: 1px;
	padding-left: 5px;
	padding-right: 5px;
}

canvas {
	max-width: 100%;
	max-height: 100%;
	margin-left: auto;
	margin-right: auto;
	display: block;
	border: solid #0077FF 2px;
	box-sizing: border-box;
	background: white;
        box-shadow: 0 4px 4px 0 rgba(51,62,72,0.13), 0 4px 4px 0 rgba(51, 62, 72, 0.13);
}
a {
        color: #F8F9FA;
        text-decoration: none;
        transition: 0.3s;
}
a:hover {
        color: #C9C9C9;
}
.dark {
        color: #032775;
}
.button {
	position: relative;
/*	display: block;*/
        color: #032775;
        padding: 2px;
        border-radius: 4px;
        background: repeating-linear-gradient(
          -45deg,
          #ffcd41,
          #ffcd41 1px,
          #c49c2b 1px,
          #c49c2b 2px
        );
        box-shadow: 0 4px 4px 0 rgba(51,62,72,0.13), 0 4px 4px 0 rgba(51, 62, 72, 0.13);

}
/*
.button:before {
	background:#f0f0f0;
	background:green;
	background-image: linear-gradient(0% 0%, 0% 100%, from(#D0D0D0), to(#f0f0f0));
	background-image: linear-gradient(red,yellow,blue);
	position: absolute;
	content: "";
	left: -6px;
	right: -6px;
	top: -6px;
	bottom: -10px;
	z-index: -1;
}
*/
a:hover.button {
        color: #E1E1E1;
}
a:active.button {
	top: 5px;
        box-shadow: 0 0 0 0;
}

form {
	margin-left: 10px;
}

iframe {
	border-radius: 20px;
}

show {
	display: block;
	margin-bottom: 20px;
}
show_date{
	display: inline-block;
	width: 20%;
	min-width: 160px;
}
show_loc{
	display: inline-block;
	width: 30%;
	min-width: 180px;
}
show_venue{
	display: inline-block;
	width: 25%;
	min-width: 180px;
}
show_tickets{
	display: inline-block;
	width: 25%;
	min-width: 200px;
	text-align: center;
}

footer {
	padding-top: 10px;
	box-sizing: border-box;
	height: 8%;
	overflow: none;
}
