/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&display=swap');*/
@import url(chota.css);

:root {
  --color-primary: #424242; /* brand color */
  --grid-maxWidth: 132rem; /* max container width 1080px */
  --font-family-sans: 'Montserrat';
  --font-family-mono: 'Montserrat';
}

.container.gridContainer {
  min-height: 90vh;
  margin-bottom: 5vh;
}

nav {
  padding: 4rem 0rem 6rem;
}

.nav .brand {
  font-weight: 900;
  padding: 0;
}

.nav a {
  padding: 1 rem 1.5rem;
}

.nav .button {
  margin: auto 0rem;
  width: 12rem;
  display: inline-block;
}

.card {
  padding: 0em 0rem 0.7em;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;

}
.card img {
  -webkit-box-shadow: 0 1px 3px var(--color-grey);
          box-shadow: 0 1px 3px var(--color-grey);
}

.footer {
  background-color: #fafafa;
  padding: 4rem;
}
.textArea {
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}

.gridContainer .textArea {
  max-width: 900px;
  margin-bottom: 2em;
}

.gridContainer .textArea, .footerText {
  font-size: 1.5em;
}

.cardTitle {
  width: 100%;
  padding: 0.15em 0em;
}

.cardTitle span {
  display: inline;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
}

.form {
  margin: auto;
  display: block;
}

p, .contributors {
  margin-block-end: 2em;
}

a {
  text-decoration: underline;
}

.cont {
  display: inline-block;
  width: 49.5%;
}

.button {
  display: block;
}

.cardTitle.button {
  margin: 0;
  font-size: 1.25em;
  padding: 0.5em 0em;
}


#menuToggle
{
  display: block;
  position: absolute;
  top: 50px;
/*  right: 50px;*/
  
  z-index: 2;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 3; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 2;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 400px;
  height: 475px;
  margin: 0 -100px 0 0;
  padding: 50px;
  padding-top: 125px;
  top: -100px;
  right: 75px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(0, -100%);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
  opacity: 1;
}

.active li {
  text-decoration: underline;
  font-weight: bold;
}
.nav-left {
  min-width: 220px;
}
@media screen and (max-width: 480px) {
  .nav, .nav>.container {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
  }
  .nav-right {
    justify-content: flex-end;
  }
}

.description {
  width: 600px;
  max-width: 100%;
}

#trio .card {
  max-width: 28vw;
}
.extraSpace {
  margin-top:10vh;
  margin-bottom: 10vh;
}