* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
header {
  background-color: #c4c4c4;
  width: 100%;
  padding: 1rem;
}
nav {
  background-color: #3b383c;
}
nav ul {
  /* padding: 1rem; */
  padding-left: 1rem;
  display: flex;
  list-style-type: none;
}
nav ul li {
  display: flex;
}
nav ul li a {
  padding: 0.5rem 0.75rem;
  color: gray;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 1.25rem;
}
a:hover {
  background-color: yellowgreen;
}
* {
  font-family: "Playwrite AU NSW", cursive;
  font-optical-sizing: auto;

  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.subtitle {
  font-size: 1rem;
}
.title {
  font-size: 2.5rem;
}
main {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
section.left,
section.right {
  padding: 1rem;
}
section.right h4 {
  font-size: 1.25rem;
  text-align: center;
}
a.active {
  color: white;
}
section.left {
  flex: 4 1 550px;
}
section.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 250px;
}
.special {
  text-align: center;
  margin: auto;
  font-size: 1.35rem;
  color: red;
}
div {
  display: flex;
  flex-wrap: wrap;
  padding-top: 2rem;
}
.myPicture {
  width: 25vh;
  height: 25vh;
  border-radius: 50%;
  margin: auto;
}
p {
  flex-wrap: wrap;
  flex: 1 1 350px;
}
p.left {
  flex: 1 1 350px;
}
p.right {
  flex: 4 1 300px;
}
#curve_chart {
  width: 100%;
  height: 80%;
}
@media screen and (max-width: 885px) {
  nav ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  #curve_chart {
    width: 100%;
    height: 40%;
  }
}
