/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.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;
}
.MissionText {
  font-size: 30px;
  font-style:  italic;
}
.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 */
  padding: 10px;
}

.column {
  flex: 1; /* Each column takes equal space */
  background-color:  #c39eab    /* #b88c9d;   TT purple background */
  height: 180px;
  border: 1px solid #333300
  padding: 5px;
}

#content {
  height: 100%;
  font-size: 30px;
  padding-top: 0px;
  background-color:#c39eab;
  text-align: center;
  border: 1px solid #333300
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}
