.border {
pointer-events: none;
z-index: 1001;
position: fixed;
top: 0px;
right: 0px;
width: 100%;
height: 100%;
box-sizing: border-box;
border: 35px solid black
}
.vignette {
position: fixed;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: inset 0px 0px 1000px 30px  black;
filter: opacity(100%);
pointer-events: none;
z-index: 1002;
}

@font-face {
   font-family: "dube-it";
   src: url(fonts/dubellit.ttf) format("truetype"); 
}
body{
    background-image: url(images/grid.webp);
    background-position: center;
}

.container{
    width: 600px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.69);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 1px 1px 8px black; 

    margin: 200px auto;

}
.content{
    color: white;
    width: 580px;
    height: 280px;
    background-color:rgba(0, 106, 255, 0.589);
    overflow-y: scroll;
    margin: 10px;
    text-align: center;
  display: block;
}
.content p{
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.log{
    font-size: 12px;
    font-weight: lighter;
}

::-webkit-scrollbar {
  width: 10px;
  padding-right: 5px;
}

/* Track */
::-webkit-scrollbar-track { 
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.715);
}
 /* Handle */
::-webkit-scrollbar-thumb {
  background: blue;
  border: 1px solid rgba(0, 0, 0, 0.715);
}
.update{
  font-family:dube-it;
  letter-spacing: 3px;
  font-size: 60px;
  color: rgb(230, 239, 103);
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.718);
}
hr{
    max-width: 500px;
}

.btns{
    display: flex;
    position: absolute;
    top: -10%;
    right: 0%;
}
button{
    background-color: rgba(255, 255, 255, 0.578);;
    border-radius: 0px;
    border: none;
    transition-duration: 210ms;
    font-size: 9px;
    height: 25px;
    width: 100px;
    letter-spacing: 3px;
}
button:hover{
    box-shadow: 0px -5px rgba(0, 106, 255);
    cursor:pointer;
}

