html, body {
    margin: 0;
    font-size: 1rem;
}
* {
    box-sizing: border-box;
}

body {
    background-image: url("backgrounds/rdbg.jpg");
    font-family: MS-UI-Gothic, 'Segoe UI', system-ui;
    /* background-size: cover;
    background-position: center; */
}
h1 {
    font-size: 1rem;
}
#flex {
    display:flex;
    flex-direction: column;
}
#flex2 {
    display:flex;
    flex-wrap: wrap;
}
#container {
    background-color:#f2ece4;
    width: 800px;
    margin: 20px auto;  
    border: 1.5px solid #6b7d8b;
    padding: 10px;
    display:flex;
    height:700px;
}
#about {
    border-top:0;
    height:fit-content;
    text-align:center;
}
#box {
    width:100px;
    /* border: 3px ridge #cdd1d3; */
    border-radius:5px;
}
img {
    max-width: 100%;
}
#tabs {
    height: 20px;
    background-image: linear-gradient(to bottom, #f2ece4 0%, white 100%);
    /* border: 0.05px solid rgb(112, 112, 112); */
    box-shadow: 0px 1px 2px white inset, 0px -1px 2px rgb(231, 231, 231) inset;
    text-align: center;
    border-right:0;
    border-left:0;
  }
.button {
    width: 100%;
    background-image: linear-gradient(to bottom, #fefefe, #dcdcdc);
    border: 1px solid #a0a0a0;
    border-radius: 3px;
    box-shadow: inset 0 1px 0px #ffffff, inset 0 -1px 0px #c4c4c4, 0 1px 1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    height: 40px;
    margin: 10px auto;
    padding: 0 10px;
    font-family: 'Segoe UI', system-ui;
    font-size: 0.9rem;
    color: #000;
    text-align: left;
    transition: all 0.1s ease-in-out;
  }
  
  .button:hover {
    background-image: linear-gradient(to bottom, #ffffff, #e4e4e4);
    box-shadow: inset 0 1px 0px #ffffff, inset 0 -1px 0px #b4b4b4, 0 2px 2px rgba(0, 0, 0, 0.2);
  }
  
  .button:active {
    background-image: linear-gradient(to bottom, #cccccc, #bbbbbb);
    box-shadow:
      inset 0 2px 3px rgba(0, 0, 0, 0.3);
    transform: translateY(1px);
  }
::-webkit-scrollbar {
    width: 14px;
    height: 16px;
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-button {
    width: 14px;
    height: 16px;
    background: silver;
    box-shadow: inset 1px 1px 1px #dfdfdf, inset -1px -1px 1px gray;
    border: 1px solid;
    border-color: silver #000 #000 silver;
}
::-webkit-scrollbar-track {
    background-color: #e1dfe0;
}
table {
  width: 500px;
}

@font-face {
  font-family: "MS-UI-Gothic";
  src: url("fonts/MSGOTHIC.TTF");
}
/* background-image: linear-gradient(to bottom, rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%);  */