
@media screen and (max-width: 510px) {
  .main_p{
    text-indent: 1em;
    text-align: justify;
    font-size: 1.5em; 
  }

  .main_page_nav_link{
    color: blue;
    text-decoration: underline; 
    padding: 0;
  }

  .footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #293352;
    height: 25vh;
    width: 100%;
    padding: 2em;
  }

  .footer_link_col{
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid;
    border-right: 1px solid;
    border-color: white;
    width: 150px;
    margin: 1em;
    border-color: white;
  }
}

@media screen and (min-width: 510px) {
  .main_p{
    text-indent: 2em;
    text-align: justify;
    font-size: 1.8em; 
  }

  .main_page_nav_link{
    color: blue;
    text-decoration: underline; 
    padding: 0;
    font-size: 1.5em;
  }

  .footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #293352;
    height: 12vh;
    width: 100%;
    padding: 1em;
  }

  .footer_link_col{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    border-left: 1px solid;
    border-right: 1px solid;
    border-color: white;
  }
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

*, html {
  margin: 0;
  padding: 0;  
  font-family: "Open Sans", verdana, sans-serif;
  color: #222;
}

.p{
text-indent: 2em each-line;
text-align: justify;
}

/* main_page */
.main_page_container{
  min-height: 65vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.main_page_content{
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main_page_nav_link_bar{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

/* main_page */

.chop_line{
    width: 100%;
    height: 1vh;
    background-color:#293352; 
    margin-top: 0.5em;
}

.veteran_card{
  width: 90%;
  height: 100%;
  cursor: pointer;
  box-shadow: 2px 2px 5px -1px rgba(34, 60, 80, 0.25);
  border:#293352;
}

.veteran_card:hover{
  box-shadow: 2px 2px 5px -1px rgba(34, 60, 80, 0.75);
}

.faculty_bar_button{
  cursor: pointer; 
  width: 200px; 
  user-select: none;
  text-align: center; 
  min-height: 4em;
  box-shadow: 2px 2px 5px -1px rgba(34, 60, 80, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
}

.faculty_bar_button:hover{
  box-shadow: 4px 4px 8px -1px rgba(34, 60, 80, 0.75);
}

.button_up{
 width: 5em; 
 height: 3em;  
 margin-bottom: 1em; 
 border-radius: 5px;
 border-color: #293352; 
 position: fixed; 
 cursor: pointer;
 bottom: 1em; 
 right: 1em; 
}

/* Footer */
.footer_link{
  color: white; 
  text-decoration: underline; 
  padding: 0;
  height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Footer */

/* Header */
    .header{
      display: flex;
      align-items: flex-end;
      background-image: url(headerimg.jpg);
      background-repeat: no-repeat;
      background-size: cover; 
      background-position: center; 
      height: 25vh ; 
      width: 100%;
    }

    .header_button_panel{
      height: 5vh; 
      width: 100%; 
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 0.25em;
    }

    .header_button{
      width: 150px;
      height: 80%;
      margin-right: 0.5em;
      margin-left: 0.5em;
      font-weight: 500;
      color: white;
      border-radius: 8px;
      border: none;
      background-color: #293352;
      box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.15);
      user-select: none;
    }

    .header_button:hover{
      background-color: white;
      color: #293352;
      box-shadow: 4px 4px 8px 0px rgba(36, 36, 36, 0.7);
    }
/* Header */