.flex-row { /*https://www.w3schools.com/css/css3_flexbox_container.asp*/
  display:flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
}

.flex-row img {
    width: auto;
    height: 500px;
    object-fit: cover;
}


.content_box {
  background-color: #FFFFFC;
  padding: 20px;
  margin: 30px;
  border-radius: 5px;
  border: 2.5px solid #BA8E23;
  font-size: 1.2em;
}

.content_box h1, h2, h3, h4, h5, h6 {
  color: black;
  margin-bottom: 10px;
  font-size:25px
}

.content_box_robotics {
  background-color: #FFFFFC;
  padding: 20px;
  margin: 30px;
  border-radius: 5px;
  border: 2.5px solid #BA8E23;
  font-size: 1.4em;
}

p {
  color: black;
  line-height: 1.5;
}

#mun {
  height: 255px;
  width: auto;
}

#msef {
  height: 255px;
  width: auto;
}

#running_image {
  height: 245px;
  width: auto;
}

.inline-block { /*https://www.w3schools.com/css/css_inline-block.asp*/
  display: inline-flex;
  justify-content: center;
}

.floatright {
  float: right;
}

#frc_logo, #alarm_logo {
  width: 285px;
  display: block;
}

#robotics_text {
  width: 77%;
}

.column {
    flex:33%;
    padding: 5px;
    text-align: center;
}

.row {
    display:flex;
}


.floatleft{
    float:left;
}

.floatright{
    float:right;
}

ul { /*https://www.w3schools.com/css/css_navbar.asp*/
  list-style-type: none; /*removed bullet*/
  margin: 0px; /* removed default margin */
  padding: 0px; /* removed default spacing */
  background-color: #D7BA89;
  overflow: hidden; /* allows content to stay within the unordered list */
  display: flex;
  justify-content: center;
  align-items: center;
}

ul li {
  margin-top: 0px;
}

ul li a {
  color: black; /*text color*/
  text-decoration: none; /* remove default underline */
  padding: 15px; /* space between tabs */
  display: inline-block;
  font-size: 1.2em;
}

.fira-sans-regular {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

ul li a:hover {
  background-color: #BA8E23 /* hover over a tab and it will highlight */
}

#msef_picture, #library_teaching, #headshot {
  width: auto;
  height: 255px;
  border-width: 5px;
  border-style: outset;
  border-color: aliceblue;
}


.typewriter { /*Took inspiration from Rishab Nair's personal website and https://codepen.io/raubaca/pen/rxLwPq*/
  font-size: 100px;
  display: flex;
  align-items: center;
  background-color: #FFFFFC;
  padding-top: 10px;
  padding-bottom: 20px;
  margin: 0;
}

.cursor { /*https://codepen.io/raubaca/pen/rxLwPq*/
  display: inline-block;
  margin-left: 5px;
  color: #ffffff;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}


.fira-sans-regular { /*This font came from Google Fonts*/
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.body_text_format {
    font-size: 1.125em;
}

.align_left{
  text-align: left;
}

.align_right{
  float: right;
}

.inline { /*W3 Schools CSS Image Formatting Guide*/
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.inline img{ /*W3 Schools CSS Image Formatting Guide*/
  max-width: 750px;
  height: auto;
}

.flex-row { /*W3 Schools CSS Image Formatting Guide*/
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.flex-row img { /*W3 Schools CSS Image Formatting Guide*/
  max-width: 100%;
  height: auto;
}

#stem4ward_flyers {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#home_page {
  background-color: #091D34;
}

#introduction {
  color:aliceblue;
  background-color: #091D34;
  text-align: center;
  font-size: 2em;
}

#typewriter-text {
  font-size: 0.85em;   /* Adjust font size */
  color:#091D34;      /* Change text color */
  font-weight: normal;   /* Make text bold */
  text-align: center;  /* Center text horizontally */
  display: block;      /* Make it behave like a block element */
  margin: 0 auto;      /* Ensures centering with text-align */
}

body {
  background-color: #091D34;
}

#about_me_intro {
  font-size: 85px;
  color: #091D34;
  padding: 20px;
  background-color: aliceblue;
  text-align: center;
  font-weight: normal;
  margin-top: 0px;
}

#hobbies_images {
  padding: 5px;
  margin: 7px;
  background-color: aliceblue;
  border-radius: 5px;
  border: 2px solid #BA8E23;
}

/*
/* Carousel Container 
.carousel {
  width: 100%; /*Fill width of the parent
  max-width: 800px; /*Can not be wider than 800px
  overflow: hidden; /* Hide overflowing slides 
  margin: auto; /* centers carousel 
}

/* Slides container 
.slides {
  display: flex;
  transition: transform 0.5s ease; /* Smooth sliding animation over a 0.5s 
}

.slides img {
  width: 100%;
  height: auto; /* Maintain aspect ratio 
  flex-shrink: 0; /* Prevents images from shrinking 
}
*/

.center_img {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
}

.white_text {
  color: white;
}