body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0px;
  padding: 0px;
  background-color: rgb(32,91,132);
}
.box {
  display: flex;
  flex-direction: column;
  inline-size: 500px;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.logo {
  display: block;
  width: 50px;
  margin-left: auto;
  margin-right: auto;
}
.prof-button {
  background-color: rgb(243,177,28);
  color: black;
  font-family:  "Monaco", monospace;
  font-size: 16px;
  text-decoration: none;
  padding-left: 15px;
  padding-top: 8px;
  padding-right: 15px;
  padding-bottom: 8px;
  border-style: solid;
  border-left-color: rgb(197,128,42);
  border-left-width: 4px;
  border-top-left-radius: 15px;
  border-top-color: rgb(197,128,42);
  border-top-width: 4px;
  border-bottom-right-radius: 15px;
  border-right: none;
  border-bottom: none;
  cursor: pointer;
  margin-left: 4px;
  margin-right: 4px;
  position: relative;
  top: 4px;
  transition: box-shadow 0.3s;
}
.prof-button:hover {
  box-shadow: 5px 5px 10px rgba(0,0,0,0.7);
}
.pers-button {
  background-color: rgb(243,177,28);
  color: black;
  font-family:  "Monaco", monospace;
  font-size: 16px;
  text-decoration: none;
  padding-left: 15px;
  padding-top: 8px;
  padding-right: 15px;
  padding-bottom: 8px;
  border-style: solid;
  border-right-color: rgb(197,128,42);
  border-right-width: 4px;
  border-top-left-radius: 15px;
  border-bottom-color: rgb(197,128,42);
  border-bottom-width: 4px;
  border-bottom-right-radius: 15px;
  border-left: none;
  border-top: none;
  cursor: pointer;
  margin-left: 4px;
  margin-right: 4px;
  transition: box-shadow 0.3s;
}
.pers-button:hover {
  box-shadow: 5px 5px 10px rgba(0,0,0,0.7);
}
.header-text {
  font-family: "Monaco", monospace;
  font-size: 32px;
  color: rgb(243,177,28);
  font-weight: bold;
  text-align: center;
}
.body-text {
  font-family: "Monaco", monospace;
  font-size: 16px;
  color: antiquewhite;
  text-align: center;
  }