
@font-face {
    font-family: "MinecraftFont";
    src: url("../minecraft-font/MinecraftRegular-Bmg3.otf");
}
html {
    background-image: url("../images/Deepslate_Tiles_Dark.jpg");
    background-color: #231012;
    background-size: 160px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #e8f1ff;
    padding: 0;
}
body {
    margin:0;
}
header {
    justify-items: center;
    padding: 1rem;
    margin-bottom: 5rem;
    background-image: url("../images/Grass_Block_29_JE2_BE2.webp");
    background-color: #525250;
    background-size: 160px;
    box-shadow: 0px 10px 20px black;

}
h1 {
    font-family: 'MinecraftFont';
    font-size: 3rem;
}
section {
    width: 50vw;
    margin: 2rem auto;
    padding: 1rem;
    border-radius: 5px;
    background-color: #383838;
}
.centeringcontainer{
    display:flex;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0;
    justify-items: center;
    align-items: center;
}
.downloadbtn {
    padding: 0.5rem;
   
}
.smalltext{
    font-weight: lighter;
    font-style: italic;
}
p {
    line-height: 1.5rem;
}
a {
    color: #e8f1ff;
}
address{
    font-size: 1.5rem;
    font-weight: lighter;
}

ul {
    list-style-type: ' ★ ';
}

details{
    @media (prefers-reduced-motion: no-preference) {
        interpolate-size: allow-keywords;
      }
    
      &::details-content {
        opacity: 0;
        block-size: 0;
        overflow-y: clip;
        transition: content-visibility 1s allow-discrete, opacity 1s, block-size 1s;
      }
    
      &[open]::details-content {
        opacity: 1;
        block-size: auto;
      }

}

details > summary {
    list-style-type: '〔 + 〕 ';
    
}

details[open] > summary {

    
    list-style-type: '〔 − 〕';
}