body {
    font-family: Arial, sans-serif;
    margin: 10px;
    padding: 10px;
    background-color: gray;
    /* background-color: whitesmoke; */
    /* margin-right: 20% */
}

nav {
    background-color: rgb(88, 30, 20);
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    padding: 1rem;
    margin-right: 20px;
    margin-left:20px;
    border-radius: 16px;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,gray 0 -3px 0 inset;


}

p {
    margin: 10px;
    padding: 5px;
    margin-right: 30px;
    margin-left: 0px;

}

/* button {
    margin: 10px;
    padding: 5px;
    display: flex;
} */

/* CSS */
button {
  align-items: center;
  appearance: none;
  background-color: #FCFCFD;
  border-radius: 6px;
  border-width: 0;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #36395A;
  cursor: pointer;
  display: inline-flex;
  /* font-family: "JetBrains Mono",monospace; */
  height: 32px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  margin: 5px;
  overflow: hidden;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s,transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow,transform;
  font-size: 14px;
}

button:focus {
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

button:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  transform: translateY(-2px);
}

button:active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}


nav a {
    color: white;
    text-decoration: none;
    /* margin-bottom: 1rem; */
    /* margin: 20px; */
}

nav a:hover {
    color: rgb(58, 43, 139);
}

.banner {
    background-color: rgb(88, 30, 20);
    color: white;
    text-align: center;
    padding: 20px;
    margin: 20px;
    border-radius: 16px;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,gray 0 -3px 0 inset;


}

.flashes {
    font-size: 18pt;
}
/* .nav {
    background-color: rgb(31, 104, 172);
    height: 75vh;
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1rem;
} */

/* nav a {
    /* background-color: rgb(172, 52, 31); */
    /* height: 75vh;
    width: 100px;
    color: rgb(64, 18, 170);
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 3rem;
} */

/*nav a:hover {
    color: rgb(139, 32, 32);
} */

h1, h2 {
    margin-bottom: 1rem;
}

.main {
    flex: 4;
    border:double black;
    padding-left: 40px;
    padding-bottom: 10px;
    margin-left:236px;
    margin-right: 118px;
    background-color: #D6D6E7;
    border-radius: 16px;
}

.collapsible {
    background-color: #f1f1f1;
    color: #333;
    cursor: pointer;
    padding: 20px;
    width: 91%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
}

.active, .collapsible:hover {
    background-color: #ccc;
}

.content {
    padding: 0 15px;
    display: none;
    overflow: hidden;
    background-color: #D6D6E7;
}