/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

.flexcenter {
  display: flex;
  Justify-content: center;
}
.margintest {
  padding-top: 0.5em;
  padding-right: 1.5em;
  padding-bopttom: 0.5em;
  padding-left: 2em;
}
.teamtucsonImage {
  height: auto;
  width: auto;
  max-width: 50em;
  max-height: 50em;
}
.HowToImage {
  height: auto;
  width: auto;
  max-width: 30em;
  max-height: 30em;
}
.HowToText {
  font-size: 30px;
}
.btn-primary {
  color: #000088;
  background-color: #ADD8E6;
  width: 90px;
  height: 40px;
  font-size: 18px;
}
.my-text-input {
  font-size: 16px;
  width: 250px;
}
body{
    margin: 0;
    padding: 0;
    font-size: 20px;
}
nav {
    background-color: #e0d2d8;
    margin: 0;
    overflow: hidden;
}
nav ul{
    margin: 0;
    padding: 0;
}
nav ul li {
    /* This allow us to arrange list items in a row, without using float */
    display: inline-block;
    list-style-type: none;
}
 
/* Create a style for the first level items */
nav > ul > li > a {
    color: #17202a;
    background-color:#b88c9d;
    display: block;
    line-height: 2em;
    padding: 0.5em 0.5em;
    text-decoration: none;
}
.container {
  display: flex; /* Enables columns */
  gap: 20px; /* Space between columns */
}
.column {
  flex: 1; /* Each column takes equal space */
  height: 50px;
  border: 1px solid #333300
}
#content {
  height: 100%;
  font-size: 30px;
  padding-top: 10px;
  background-color:#b88c9d;
  text-align: center;
}
