html {
    background-image: url('https://yasu6thstreet.carrd.co/assets/images/image02.jpg?v=2d2fe580');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body {
    color: aliceblue;
    margin: 0 auto;
    width: 70%;
}

h1 {
    font-family: SakeMoru;
}

#main-body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    font-family: pixel;
}
#aboutbutton, #homebutton, #mediabutton {
    width: 50px;
}
#main-buttons {
    display: flex;
    gap: 5px;
}
#right-box {
    border: 5px solid #5c0000;
    background-color: black;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 280px;
    padding: 20px;
}
#side-bar {
    border: 5px solid #5c0000;
     background-color: black;
    display: flex;
    flex-direction: column;
    width: 30%;
    min-width: 150px;
    padding: 20px;
}
#dialogue {
    text-align: justify;
}

    html {
      overflow: scroll;
      overflow-x: hidden;
      }
      ::-webkit-scrollbar {
      width: 0; /* remove scrollbar space */
      background: transparent; /* to make scrollbar invisible */
      }
      ::-webkit-scrollbar-thumb {
      background: transparent;
      }
  ::selection {
    background: #5c0000;
  }
