::-webkit-scrollbar {
    width: 5px;
    border-radius: 20px;
  }
  
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 20px;
  }
   
  ::-webkit-scrollbar-thumb {
    background: grey; 
    border-radius: 20px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #5f5f5f; 
    border-radius: 20px;
  }

html,
body {
    height: 100%;
    margin: 0;
}

body {
    background: #ffffff;
    color: grey;
    font-size: 15px;
    word-break: break-word;
    background-attachment: fixed;
    font-family: Montserrat;
    text-align: center;
    overflow:hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

hr {
    color: 1px double silver;
    display:inline-block;
}

a {
    color: #aad3d4;
    font-weight: bold;
    transition: 0.2s;
    text-decoration: none;
    cursor: help;
}

a:hover {
    color: #aad3d471;
}

.title {
    font-size:3.3em;
    font-weight: bold;
    color: #ffffffb4;
    margin-left:10px;
    margin-top:10px;
    display:inline-block;
    margin-top:150px;
}

.header {
    background-image: url('fes.webp');
    filter: brightness(110%) saturate(70%);
    height:220px;
    background-size: cover;
    background-position: 50% 30%;
    text-align: left;
}

.writing {
    margin: 4% auto 0 auto;
    width:40%;
    height:85%;
    background-color:white;
    border:1px solid silver;
    border-radius: 10px;
    font-size:16px;
    overflow:auto;
}

#board {
    background: #d8d8d8;
    background: linear-gradient(360deg, #d8d8d8 0%, #ffffff 100%);
    border:1px solid silver;
    height:20px;
    padding:3px;
}

li {
    text-align: left;
}

h2 {
    font-size:23px;
    width: 100%; 
    text-align: center; 
    border-bottom: 1px solid grey; 
    line-height: 0.1em;
    margin: 10px 0 20px; 
    padding-top:10px;
}

 h2 span { 
     background:#fff; 
     padding:0 10px; 
 }

#texty {
  padding:20px;
  font-size: 18px;
}

form {
    width: 90%;
    margin: 0 auto;
    font-size:10pt;
    margin-top:10px;
  }
  
  fieldset {
    padding: 20px;
    border-radius:10px;
  }
  
  input,
  textarea {
    color:grey;
    width: 60%;
  }
  
  button {
    width: 20%;
  }

table {
    width:100%;
    font-size: 14px;
}

table a {
    text-decoration: underline;
}

.float {
    top:0;
    left:0;
    position:fixed;
    padding:20px;
    font-size: 1.5em;
    z-index: 99;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white, 0 0;
}

.prev {
    filter: brightness(110%) saturate(70%);
    transition: .2s;
}

.prev:hover {
    filter: none;
}

@media (max-width: 900px) {
    .writing {
        margin: 12% auto 0 auto;
        width: 90%;
        height:90%;
        overflow-x: hidden;
    }

    input, textarea {
        width: 90%;
    }

    button {
        width:65%;
    }

    table {
        font-size: 12px;
    }
}