* {
  box-sizing: border-box;
}

html {
      height: 100%;
      overflow: scroll;
      height: 500px;
      zoom: 80%
      
}

body {
    background-size:cover;
    color:rgb(210, 210, 210);
    text-shadow: 2px 0.5px #ffe6f4;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: url("/assets/pointer.png"), auto;
    margin-top: 0;
    align-items: flex-start;
    background: linear-gradient(rgb(237, 237, 237), white);
    background-repeat: no-repeat;
    
    
}

::selection {
    background-color: #e4dcdc;
    color: rgb(114, 114, 114)
}

::-moz-selection {
    background-color: #e4dcdc;
    color: rgb(114, 114, 114)
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;    
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 1000px;
  min-width: 50%;
  
  margin: 0 auto;
  position: relative;
}


.siteheader {
    position:relative;
    background-size: cover;
    background-position: center;
    margin-top: 20px;
    margin-bottom: 0px;
    padding: 5% 25%;

    width: 0%;
    height: 50%;
    border: 5px solid;
    border-image: linear-gradient( #ffe6f5, #ffffff) 1 !important;
    box-shadow: rgb(182, 182, 182) 0px -1px 2px 2px;
    overflow: hidden;
    
}

.siteheader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/kangel.png") center/cover;
  filter: grayscale(1);
  z-index: 0;
}

.siteheader::after {
    position: absolute;
    content:"";
    height:100%;
    width:100%;
    top:0;
    left:0;
    background: linear-gradient(to bottom, rgba(223, 10, 10, 0) 0%,rgba(255, 226, 247, 0.75) 100%);
}

.box {
    background-color: #fffafd;
    padding: 15px;
    padding-top: 10px;
    width: 51%;
    padding-bottom: 25px;
    max-height: fit-content;
    overflow-wrap:break-word;
    padding: 15px 20px;
    border-radius: 0px 0px 5px 5px;
    box-shadow:
    inset 0 0 0 2px #ffffff,
    inset 0 0 0 5px #ffffff,
    inset 0 0 0 7px #dabdca,
    0 1px 7px rgba(0,0,0,0.4); 
    background: linear-gradient(rgb(255, 255, 255), rgb(255, 249, 254))
    
}

.leftmenu {
    display: block;
    overflow: auto;
    margin-right: 70%;
    width: 15%;
    position:absolute;
    margin-top: 0%;
    padding: 15px 20px;
    border-radius: 10px 10px 0px 0px;
    box-shadow:
    inset 0 0 0 2px #e7dbe0,
    inset 0 0 0 5px #ffffff,
    inset 0 0 0 7px #dabdca,
    0 2px 6px rgba(0,0,0,0.1); 
    background: linear-gradient(rgb(255, 255, 255), rgb(255, 249, 254))
    
    
}

.rightmenu {
    display: block;
    overflow: auto;
    margin-left: 70%;
    width: 15%;
    position:absolute;
    margin-top: 0%;
    background: #fffafd;
    padding: 15px 20px;
    border-radius: 10px 10px 0px 0px;
    box-shadow:
   inset 0 0 0 2px #e7dbe0,
    inset 0 0 0 5px #ffffff,
    inset 0 0 0 7px #dabdca,
    0 2px 6px rgba(0,0,0,0.1); 
    
    
}


h1{
    font-size: 30px;
    font-family:monospace;
    border-bottom-style:ridge;
        border-color: rgb(255, 231, 248);
}