:root {
  /* --colorBG: #123526; */
  --colorText: #f0f3d9;
  --colorInput: #f6f9dd;
  --colorTextHeadline: #9ea874;
  --colorButtons: #7e7034;
  --colorWhite: white;
  --colorHeaderBG: #0d1f1a;
  --borderRadius: 5px;
  --padding: 20px;

  --colorPrimary: #123526;
  --colorPrimaryDark: #0d1f1a;
  --colorSecondary: #bcaa58;
  --colorBG: #eee;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 20px;
  scroll-behavior: smooth;
  letter-spacing: 1px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /* background-color: var(--colorBG); */
  /* overflow: hidden; */
}

.button {
  background-color: var(--colorSecondary);
  font-size: 20px;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.button:hover {
  scale: 1.01;
}

.content {
  width: 100%;
  height: 100vh;
  padding-left: 150px;
  padding-top: 150px;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  overflow-y: scroll !important;
}

.content .left {
  width: calc(100% - 40px - 300px);
  height: 100%;
  margin-bottom: 100px;
}

.content .right {
  width: 300px;
  height: 100%;
  position: fixed;
  top: 150px;
  right: 50px;
  /* padding-top: 150px; */
}

.content .right .panel {
  width: 100%;
  border-radius: 10px;
  background-color: var(--colorBG);
  padding: 20px;
}

.bold {
  font-weight: bold;
  margin-bottom: 10px;
}

.panel .button {
  margin-top: 20px;
  text-decoration: none;
}

.button-save {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 300px;
  font-size: 30px;
}
