// ***************************************************************************
// Copyright (c) 2020 Clifford Thompson
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
//
// ***************************************************************************

// ***************************************************************************
// Global styles
// ***************************************************************************

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

div {
  //border: 1px solid red; // For debugging
}

.sim-canvas {
  border: 1px solid black;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.sim-column {
  padding-bottom: 30px;
  text-align: center;
}

.sim-finished-column {
  text-align: center;
}

.sim-jumbotron {
  background: #709255;
  color: #eeeeee;
  padding-top: 32px;
  padding-bottom: 32px;
}



