/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html, body {
  color: white;
  font-family: "Segoe UI";
  height: 100%;
  box-sizing: border-box;
}

body {
  background-image: url("bg.png");
  }

.vertical {
  display: flex;
  flex-direction: column;
  gap: 5px; 
  }

.long-button {
  background: linear-gradient(to bottom,
  #854 0%,
  #744 55%,
  #4f1418 55%,
  #521410 100%
  );
  border: 1px solid black;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  padding: 2px;
  color: white;
  text-shadow: 0px 2px 2px #000000;
  height: 30px;
  display: inline-block;
  width: 100%;
  box-shadow: 0px 2px 8px #0008;
  margin: 2px;
}

  
.long-button:hover {
  background: linear-gradient(to bottom,
  #576 0%,
  #565 55%,
  #343 55%,
  #444 100%
  );
  }

.long-button:active {
  background: linear-gradient(to bottom,
  #132 0%,
  #342 100%
  );
  }

.main-div {
  background: linear-gradient(to bottom,
  #3225 0%,
  #622b 100%
  );
  border: 1px solid black;
  border-radius: 10px;
  position: relative;
  padding: 10px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.sidebar {
  background: linear-gradient(to bottom, #3338 0%, #844 100%);
  border: 1px solid black;
  border-radius: 10px;
  padding: 10px;
  width: 300px;
  height: 100%;
  box-sizing: border-box;
}

.sidebar-left {
  background: linear-gradient(to bottom, #3338 0%, #844 100%);
  border: 1px solid black;
  border-radius: 10px;
  padding: 10px;
  width: 300px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.main-body {
  background: linear-gradient(to bottom, #3338 0%, #844 100%);
  border: 1px solid black;
  border-radius: 10px;
  padding: 10px;
  height: 100%;
  box-sizing: border-box;
  flex: 1;
  margin: 0 10px; /* optional spacing */
  display: flex;
  flex-direction: row;
}