/*
html,
body {
    margin: 0;
    overflow: hidden;
    min-width: 100vw;
    min-height: 100vh;
}

.container {
  width: 100vw !important;
  height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}
*/


   
  html,
body {
    
    margin: 0;
    min-width: 100vw;
    min-height: 100vh;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-size: 1rem;
}
        
    .container {
  width: 100vw !important;
/*  height: 100vh !important;*/
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

        
        #canvas {
          outline: #ccc solid 2px;
        }
        .canvas-container {
            width: 40vw !important;
            min-height:30vw !important;
          display: flex;
          align-items: center;
          justify-content: center;
          
}

    .workspace {
  width: 100vw !important;
  height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.info-section {
        background-color: #222;
      width: 100vw;
        color: white;
        display: flex;
          flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
}

        .info {
          text-align: left;
          color: white;
          font-size: 2em;
          width: 40%;
          height: 100vh !important;
          margin: 0 !important;
            display: flex !important;
        flex-direction: column !important;
        align-items: left !important;
        justify-content: center !important;
        }

        
        .info *{
            margin: 0;
        }
        .info h5 {
              font-size: 2.3em;
          text-align: left;
        }
        .info p {
          
          font-weight: 100;
            font-size:  .5em;
            padding-top: 20px;
            padding-bottom: 30px;
          line-height: 1.5;
        }
        
        
        #form-elements {
        }
        
        #name-field {
            margin-top: 20px;
            width: 100%;
        }

button, input#name-field {
  
  font-family: "Helvetica-Neue", Helvetica, sans-serif;
  text-indent: 1em;
  height: 30px;
  border-radius: 5px;
}

button:focus, textarea:focus, input:focus{
    outline: none;
}

#name-field:focus {
  box-shadow: inset 0px 0px 10px -2px rgba(0,0,0, .5);
}

#name-field {
    width: 30%;
    border: 1px solid #ccc;
}

button {
  font-weight: bold;
    width: 20%;
  border: 1px solid gray;
  background-color: white;
  margin-bottom: 1em;
}

button:active {
  background-color: #eee;
}

.success-section {
  padding-top: 50px;
min-height: 100vh;
}

.success {
  display: none;
}