/*fairhaven/media/css/global.css*/

@font-face {
    font-family: Minefont; 
    src: url(/media/fonts/MinecraftRegular.otf);
}


body {
  background-color: #181a1c;
  /*background-image: url(/media/images/background/stone_bricks.png);*/
  background-image: url(/media/images/background/image.png);
 /* background-repeat: repeat;*/
  background-attachment: fixed;
  background-position: center;
  /*background-size: 5%;*/
  background-size: cover;
  font-family:Minefont;
  image-rendering: pixelated; 
}

img.logo {
    height:150px;
    width:150px;
  overflow: hidden;
  display: inline-block;
  /*border-style: solid; 
  border-color: #000000; 
  border-width: 2px;
  border-radius: 10px;*/

  image-rendering: pixelated; 
  
}


p, h1 {
    text-align:center;
    color:white;
    text-shadow: -1px 1px 2px #000,
				  1px 1px 2px #000,
				  1px -1px 0 #000,
				  -1px -1px 0 #000;
}

.buttons{
    margin-top:20px;
}

a.button {
    font-size:18px;
    border: 15px solid transparent;
    border-image: url(/media/images/button_normal.png) 5 stretch;
    image-rendering: pixelated;
    border-spacing: 0px;
    color:#ffffff;
    background-color: #6f6f6f;
    text-decoration: none;
    width:300px;
    height:20px;
    display:block;
    /*margin-left: -15px;
    margin-right: 15px;*/
}
a.button:hover {
    border-image: url(/media/images/button_hover.png) 5 stretch;
    color:#FFFF55;
}

p.button {
    width:305px;
    margin:auto;
    padding-bottom:10px;
    text-align: center;
	text-shadow: -1px 1px 2px #000,
				  1px 1px 2px #000,
				  1px -1px 0 #000,
				  -1px -1px 0 #000;
    padding-left:17px;
    padding-right:17px;
}

img.button-icon{
    float: left;
    width:20px;
    height:20px;
    image-rendering: auto; 
}

.horizontal-buttons{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: fit-content;
    
}

details summary { 
  cursor: pointer;
  font-family: MineFont;
}

/*
details > summary {
    list-style-type: '> ';
}

details[open] > summary {
    list-style-type: '\2228 ';
}