/* Set the scroll behavior to smooth so that when you click the in the header, the screen scrolls down rather than jumps */
html {
    scroll-behavior: smooth;
  }
  
  /* Set the margin to 0 to make sure the page stretches all the way to the edge of the browser window. */
  body {
    margin: 0;
  }
  header, footer {
    background-color: #772e25;
    text-align: center;
  /*  min-width: 500px; */
  }
  
  header {
    font-family: 'Roboto', serif;
    color: #ffffff;
  
    min-height: 50vh;
    display: flex;
  }
  
  main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40%, 1fr) ) ;
    grid-gap: 20px;
    margin-top: 44px;
  
    justify-items: center;
    justify-content: center;
    align-items: stretch;
    align-content: center;
  }
  
  h1 {
    font-family: 'Space Mono', serif;
    font-size: calc(1em + 3vw);
    padding-bottom: .67em;
    border-bottom: 1px solid;
    line-height: 1.3;
  }
  
  h2 {
    font-family: 'Space Mono', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: left;
    color: #000000;
    padding: 10px 0px 10px 10px;
  }
  
  img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }
  
  .wrapper {
      max-width: 1150px;
      margin: auto;
      padding: 50px;
      display: block;
  }
  
  .bio {
    color: #ffffff;
    font-size: 24px;
    font-family: 'Roboto', serif;
  }
  
  .buttonBox {
    display: flex;
    justify-content: center;
    align-content: center;
  }

  .exitButton{
    border-radius: 28px;
    border: 1px solid #772e25;
    cursor: pointer;
    color: #000000;
    font-size: 20px;
    padding: 16px 31px;
    text-decoration: none;
    margin: 1.69em auto;
  }

  .exitButton:hover{
    background-color: #772e25;
  }
  
  .myButton {
    border-radius: 28px;
    border: 1px solid #ffffff;
    cursor: pointer;
    color: #ffffff;
    font-size: 20px;
    padding: 16px 31px;
    text-decoration: none;
    margin: 1.69em auto;
  }
  
  .myButton:hover {
      background-color:#000000;
  }
  
  .myButton:active {
      position:relative;
      top:1px;
  }
  
  .label {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5);
    width: 100%;
  }
  
  .a {
  
  }
  
  .c {
  
  }
  
  .time {
    padding-left: 10px;
    padding-top: 10px;
    width: 20px;
    height: auto;
  }
  
  .mins {
    display: inline-block;
    font-family: 'Space Mono', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: left;
    color: #4a4a4a;
    position: relative;
    bottom: 5px;
  }
  
  .description {
    font-family: 'Roboto', serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.29;
    letter-spacing: 0.1px;
    text-align: left;
    color: #001a23;
    padding: 10px 0px 10px 10px;
    border-top: 1px solid #4a4a4a;
  }
  
  .logo {
    width: 115px;
    height: 21.1px;
    object-fit: contain;
    padding: 20px;
  }
  
  .container {
  /*  min-width: 500px; */
    margin: auto;
  }
  
  footer {
    margin-top: 44px;
  }
  
  @media all and (max-width:700px) {
    main {
      grid-template-columns: 1fr;
    }
  }
  