body{
  padding: 25px;
  font-family: Arial, Helvetica, sans-serif;
}
.title {
	color: #5C6AC4;
}

.nav-bar {
  border-radius: 12px;
  height: auto;
  min-height: 50px;
  width: 825px;
  background-color: rgb(153, 204, 255);
  padding: 8px;
  box-shadow: 4px 4px 4px rgb(0, 0, 0, 0.3);
  margin-bottom: 16px;
  transition: all ease-in-out 0.5s;
  display: inline-flex flex;
}

.nav-bar:hover {
  transform: scale(1.01);
  /* background-image: linear-gradient(to left, rgb(204, 242, 255),rgb(153, 204, 255)); */
}

#main {
  border-radius: 12px;
  height: auto;
  display: inline-flex flex;
  min-height: 500px;
  width: 806px;
  background-color: #F2F2F2;
  padding: 16px;
  box-shadow: 8px 8px 8px rgb(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.footer {
  border-radius: 12px;
  height: auto;
  min-height: 35px;
  width: 825px;
  background-color: rgb(153, 204, 255);
  padding: 8px;
  box-shadow: 4px 4px 4px rgb(0, 0, 0, 0.3);
  margin-bottom: 16px;
  transition: all ease-in-out 0.5s;
  display: inline-flex flex;
  border: 0px dashed blue;
  text-align: margin-top;
}

#nav-ul {
  list-style-type: none;
  padding: 2px;
  text-align: margin-bottom;
}

#straight-li {
  display: inline-block;
}

.pretty-button {
  border: 4px coral solid;
  background-color: orange;
  border-radius: 16px;
  height: 50px;
  width: auto;
  min-width: 100px;
  font-size: 18px;
  font-weight: bold;
  transition: all 1s ease-in-out;
}

.pretty-button:hover {
  background: radial-gradient(circle,rgba(255, 179, 0, 1) 0%, rgba(255, 128, 0, 1) 100%);
  transform: scale(1.1);
  font-size: 24px;
  box-shadow: 4px 4px 4px rgb(0, 0, 0, 0.3);
  cursor: pointer;
}

.pretty-button:active {
 background: linear-gradient(260deg,rgba(242, 116, 116, 1) 0%, rgba(255, 0, 0, 1) 99%);
  transform: scale(1.1);
  font-size: 24px;
  box-shadow: 4px 4px 4px rgb(0, 0, 0, 0.3);
  cursor: pointer;
  border: 4px red solid;
  transition: all 0.2s ease-in-out;
}