@charset "utf-8";
/* CSS Document */

:root {
  	--titlecolor: #000080;
	--titletext: #ffffff;
  	--maincolor: #c0c0c0;
	--maintext: #000000;
  	--pbrcolor: #dfdfdf;
  	--sbrcolor: #000000;
	--inverta: invert(100%);
	--invertb: invert(0%);
	--shadow: #000000;
}

[data-theme="dark"] {
	--titlecolor: #ffffff;
	--titletext: #000000;
 	--maincolor: #000000;
	--maintext: #ffffff;
  	--pbrcolor: #dfdfdf;
  	--sbrcolor: #ffffff;
	--inverta: invert(100%);
	--invertb: invert(100%);
	--shadow: #ffffff;
}

html, body {
    height: 100%;
}

html {
    margin: auto;
    display: table;
}

body {
    display: table-cell;
    vertical-align: middle;
    background-color: #008080;
	background-image: url("/images/background/12.png");
	background-repeat: repeat;
	background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font: inherit;
    margin: 0;
}

#wrapper {
    margin: 50px 15px;
    max-width: 650px;
	color: var(--maintext);
    display: flex;
    background-color: #ffffff;
	box-shadow: 4px 4px 0px #000000;
}

#main {
    border: 2px solid var(--pbrcolor);
    margin: auto;
    display: flex;
    flex-direction: column;
	background-color: var(--maincolor);
}

#title, #body {
    padding: 15px;
    display: flex;
    align-items: flex-start;
}

#title {
    border-bottom: 2px solid var(--pbrcolor);
	background-color: var(--titlecolor);
	color: var(--titletext);
}

.text {
    margin: 0 auto;
}

[id^="body"] {
    padding: 15px;
    display: flex;
    align-items: flex-start;
	
}

[id^="body"] + [id^="body"] {
    border-top: 2px dashed var(--sbrcolor);
}

.body {
	font-family: "Roboto Condensed", serif;
    font-size: 20pt;
    text-align: justify;
    word-spacing: -0.05em;
    padding: 15px;
    display: flex;
    align-items: flex-start;
}

.bodyalt {
	font-family: "Roboto Condensed", serif;
    font-size: 20pt;
    text-align: justify;
    word-spacing: -0.05em;
    padding: 15px;
	padding-right: 30px;
    display: flex;
    align-items: flex-start;
}

.image-250px {
    width: 250px;
    height: 250px;
    border: 2px solid var(--sbrcolor);
	box-shadow: 4px 4px 0px #000000;
    margin-right: 15px;
	align-self: center;
}

.bodyimg {
	width: 250px;
	height: 250px;
}

.image-icon {
    margin-left: auto;
    align-self: center;
	filter: var(--inverta) !important;
}

#nb {
	cursor: pointer;
}

#dm {
	cursor: pointer;
}

.buttonrow {
    margin: 0 auto;
    padding: 10px 0px 10px  0px;
    border-top: 2px dashed var(--sbrcolor);
	width: 100%;
}

p {
    margin: 0;
}

.title {
    font-family: "Silkscreen", sans-serif;
    font-size: 22pt;
	font-weight: bold;
    text-align: left;
	
}

.header {
    font-family: "Bebas Neue", sans-serif;
    font-size: 25pt;
    text-align: center;
}

.credit {
    font-family: "Libre Barcode 39 Text", serif;
    font-size: 20pt;
    text-align: right;
	padding: 10px;
}

td {
    text-align: center;
}

.icon {
	filter: var(--invertb);
	width: 36px;
	height: 36px;
}

.container1 {
    display: flex;
    flex-direction: column;
	gap: 10px;
}

@media only screen and (max-width: 1100px) {    
    #title {
        display: flex;
		gap: 15px;
    }
    
    .title {
        text-align:center;
	}
	
	.header {
		padding: 15px 0px 0px 0px
	}
    
    #body {
        display: block;
        text-align: center;
    }
    
    #wrapper {
        max-width: 500px;
    }
    
    [id^="body"] {
        display: block;
        text-align: center;
    }
	
    .image-250px {
        display: block;
        margin: 0 auto;
    }
    
    .image-icon {
        gap: 25px;
    }
    
    .text {
        width: auto;
    }
	
	.bodyalt {
		margin-right: 0px;
	}
	
	.container1 * {
		text-align: center !important;
	}
}