/*
 * common
 */
body {
  background-color: rgb(255, 222, 184);
  color: rgb(170, 67, 63);
  font-family: sans-serif;
  /* font-variant: small-caps; */
}

.centered-paragraph {
  text-align: center;
  margin: 0 auto;
}

.buttons-in-row {
  display: flex;
  justify-content: right;
}

.back-button {
  font-size: 22px;
  display: flex;
  justify-content: center;
  width: 99vw;
  margin-top: 20px;
}

/*
 * header
 */
h1 {
  text-align: center;
  font-size: 40px;
  font-weight: normal;
}
.logo {
  height: 40px;
  cursor: pointer;
}
.app-logo {
  float: left;
}
.company-logo {
  float: right;
  margin-right: 20px;
}

/*
 * menu
 */
nav {
  width: 100%;
  height: 44px;
}
.menu {
  height: 44px;
  list-style-type: none;
  padding: 0;
  background-color: rgb(233, 200, 161);
  display: flex;
  justify-content: center;
}
.menu li {
  border-right: 1px solid  rgb(170, 67, 63);
}
.link {
  font-size: 18px;
  line-height: 40px;
  /* width: 100px; */
  /* margin-right: 4px; */
  padding: 0 8px;
  display: inline-block;
  text-decoration: none;
  background-color: rgb(233, 200, 161);
  color: rgb(170, 67, 63);
}
.link:hover {
  background-color: rgb(170, 67, 63);
  color: rgb(233, 200, 161);
  border-bottom: 4px solid rgb(225, 122, 118);
}

.vmenu {
  position: fixed;
  width: 160px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: rgb(233, 200, 161);
  text-align: left;
}
.vlink {
  font-size: 20px;
  line-height: 40px;
  padding-left: 2px;
  text-decoration: none;
  display: block;
  background-color: rgb(233, 200, 161);
  color: rgb(170, 67, 63);
  overflow-x: hidden;
}
.vlink:hover {
  background-color: rgb(170, 67, 63);
  color: rgb(233, 200, 161);
}

/*
 * content
 */
.home-main {
  width: 99vw;
  font-size: 22px;
  margin: 220px 0 0 0;
}
.home-page-image {
  cursor: pointer;
  display: block;
  margin: 0 auto 20px auto;
  border: 1px solid rgb(170, 67, 63);
  border-radius: 10px;
  padding: 40px;
  background-color: rgb(255, 238, 200);
  transform: rotate(-0.5deg);
}
main {
  margin-top: 200px;
}
h2 {
  text-align: center;
  font-size: 36px;
  height: 36px;
  font-weight: normal;
  /* margin: 32px 0 8px 0; */
  padding: 0;
  font-style: italic;
}
main h3 {
  font-size: 24px;
  height: 28px;
  line-height: 24px;
  font-weight: normal;
  background-color: rgb(170, 67, 63);
  color: rgb(233, 200, 161);
  margin: 0 0 40px 0;
  padding: 4px;
}
main h4 {
  font-size: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
}
main hr {
  text-align: center;
  color: rgba(170, 67, 63, 0.25);
  height: 0.40px;
  margin-bottom: 8px;
  padding: 0;
}
main p {
  text-align: justify;
  width: 95%;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 40px;
  padding: 0;
  letter-spacing: 2px;
}

main ul,
main ol {
  width: 95%;
  margin-bottom: 40px;
  letter-spacing: 2px;
}
main ul li,
main ol li{
  width: 95%;
  text-align: justify;
  font-size: 20px;
  line-height: 32px;
}

main form {
  margin: 0;
  padding: 0;
}
main table {
  font-size: 20px;
  margin: auto;
  border-collapse: collapse;
}
main th,
main td,
main td table {
  border-collapse: collapse;
  border-right: 1px solid  rgb(170, 67, 63);
  /* vertical-align: top; */
}
main input {
  height: 30px;
}
main select {
  height: 38px;
}
main input,
main select {
  width: 400px;
  font-size: 20px;
  color: rgb(170, 67, 63);
  font-family: monospace;
  /* font-variant: small-caps; */
  border-radius: 4px;
  border: 1px solid  rgb(170, 67, 63);
  cursor: pointer;
}
main input[type=checkbox] {
  width: 25px;
}
main button,
.strange-button {
  width: 52px;
  height: 40px;
  font-size: 22px;
  color: rgb(170, 67, 63);
  /* background-color: rgb(255, 222, 184); */
  background-color: rgb(233, 200, 161);
  border: 4px outset rgb(170, 67, 63);
  border-radius: 4px;
  cursor: pointer;
  margin-left: 4px;
}
main button:hover,
.strange-button:hover {
  background-color:rgb(255, 222, 184);
}
main button:active,
.strange-button:active {
  border: 4px inset rgb(170, 67, 63);
}
main textarea {
  width: 99.65%;
  font-size: 20px;
  /* font-variant: small-caps; */
  border-radius: 4px;
  border: 1px solid  rgb(170, 67, 63);
  color: rgb(170, 67, 63);
}
.details {
  height: 100px;
}
.participants {
  height: 120px;
}
.reorder-wrapper {
  font-size: 20px;
  margin: 20px auto 20px auto;
  text-align: center;
}

.vertical { writing-mode: vertical-rl; }
.upright { text-orientation: upright; }

/*
 * footer
 */
 .copyright {
  font-size: 10px;
  text-align: center;
}

/*
 * checkmark with comment
 */
sup {
  font-size: 50%;
}