body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 70%;
    font-family: Arial, Helvetica, sans-serif;
}

canvas {
    /* padding: 5px; */
}
#myContainer{
    right: 0px;
    width: 100%;
    height: 100vh;
    /* min-height: 800px; */
    display: block;
    margin: auto auto auto 200px;
}
.menu{
    position: fixed;
    left: 0px;
    width: 200px;
    background-color: #ffffffaa;
    padding: 5px;
}

.menu button{
    padding: 0.7em;
    border: solid 3px black;
    margin: 5px;
    box-shadow: #00f 2px 2px;
}

.menu button:hover{
    border-radius: 50px;
    background-color: #ff0;
    box-shadow: #00f 4px 4px;
}

#p5Sketch{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -1;
    /* display: block;
    margin: auto;
    min-width: 250px;
    min-height: 250px;
    width: auto; */
}

#warning {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #ffffffcc;
    font-size: 10vh;
    text-align: center;
    z-index: 9999;
}

#content {
    position: fixed;
    width: min-content;
    width: -moz-min-content;
    width: -webkit-min-content;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

@media screen and (orientation:portrait) {

    #warning {
        /* display: block; */
      /* -ms-transform: rotate(-90deg);
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
      width:;
      height:;
      overflow: scroll; */
    }
  }