h1, h3 {
  color: rgb(99, 99, 99);
  font-family: Arial, Helvetica, sans-serif;
}

h3 {
  margin-top: 40px;
}

p {
  color: rgb(50, 50, 50);
  font-family: Arial, Helvetica, sans-serif;
  text-align: justify;
}

body {
  background: rgb(255,171,249);
  background: linear-gradient(90deg, rgba(255,171,249,1) 0%, rgba(133,255,228,1) 48%, rgba(0,212,255,1) 100%);
}

#container {
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 2%;
  margin-bottom: 2%;
  padding-left: 3%;
  padding-right: 3%;
  padding-top: 1%;
  padding-bottom: 1%;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.3);
}

#canvas {
  width: 500px;
  height: 400px;
  border: 1px solid red;
}

#canvas-container {
  margin: 50px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 992px) {
  #container {
    margin-left: 2%;
    margin-right: 2%;
  }
}

.squatch-and-stretch { 
  transition: all .2s ease-in-out;
}

.squatch-and-stretch:hover { 
  transform: scale(1.2, 1); 
  transform-origin: top left;
}

.grow-a-lot { 
  transition: all .2s ease-in-out;
}

.grow-a-lot:hover { 
  transform: scale(2); 
  margin-left: auto;
  margin-right: auto;
  transform-origin: bottom right;
}

.magenta-text {
  color: #63009d;
}

.bold {
  font-weight: bold;
}

.custom-rounded-edge-image {
  max-height: 200px;
  max-width: 200px;
  border-radius: 15px;
}

.custom-rounded-edge-image-big {
  max-height: 270px;
  max-width: 270px;
  border-radius: 15px;
}

.image-left {
  margin: 5px 15px 5px 0px;
  float: left; 
}

.image-right {
  margin: 5px 0px 5px 15px;
  float: right; 
}