img {
  border-radius: 100px;
  height: 25rem;
}

.button-2 {
  background-color: rgb(255, 255, 255);
  color: #bc3c33;
  border: #bc3c33;
  cursor: pointer;
  border-radius: 8px;
  width: 100px;
  height: 45px;
  transition: 0.3s;
  padding: 0px;
  margin-right: 20px;
}

.button-2:hover {
  color: #ffffff;
  background-color: #bc3c33;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  transform: translateY(-2px);
}

.button-2:active {
  box-shadow: none;
  transform: translateY(0);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  height: 50%;
  background-color: rgb(248, 248, 248);
}

h1 {
  font-family: 'Pacifico', cursive;
  font-size: 44px;
  color: #bc3c33;
  font-family: 'Pacifico', cursive;
  font-size: 44px;
  color: #bc3c33;
}

h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #bc3c33;
  padding-left: 2rem;
  padding-top: 4rem;
}

h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #bc3c33;
  text-align: center;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #bc3c33;
  padding-left: 1rem;
}

li {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #bc3c33;
  padding-left: 15px;
  list-style-type: none;
}

ul {
  padding-left: 10px;
}

.canvas {
  flex-grow: 1;
  height: 100vh;
  width: calc(100vw - 210px);
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 300px;
  background-color: rgba(248, 248, 248, 1);
  padding: 50px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow-y: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
