* {
  box-sizing: border-box;
}

body {
  margin: 0;
    background-color: #092C5C;
}

h1 {
  color: #fff;
  text-align: center;
}

/* Style the header */
.header {
  background-color: #f1e4c1;
  padding: 20px;
  text-align: center;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #8FBCE6;
   
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #092C5C;
  color: #fff;
}


/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 15px 0 0 15px;
  background-color: #092C5C;
  color: #fff;

}

/* Create TWO equal columns that floats next to each other */
.column2 {
  float: left;
  width: 50%;
  padding: 15px;
  background-color: #092C5C;
  color: #fff;
}
/* Create ONE column that floats next to each other */
.column1 {
  float: left;
  width: 90%;
  padding: 15px;
  background-color: #092C5C;
  color: #fff;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width:600px) {
  .column {
    width: 100%;
  }
}

/* Dottedborder for divider lines */

hr.dotted {
  border-top: 5px dotted #fff;

}

  /* --- Button Styling --- */
.button {
  background-color: #092C5C; /* Navy */
  border: none;
  color: white;
  padding: 10px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 2px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
}
}
.button1 {
  background-color: #092C5C; /* Navy */
  color: #fff; 
  border: 2px solid #f1e4c1;
}

.button2 {
  background-color: #fff;  /* White */
  color: #092C5C; 
  border: 3px solid #8FBCE6;
  font-size: 10px;  
}

.button1:hover {
  background-color: #fff; /* white */
  color: #092C5C;
}

.button2:hover {
  background-color: #8FBCE6; /* Columbia Blue */
  color: #092C5C;
}

  /* --- Card Styling --- */

  .card {

    display: flex;

    flex-wrap: wrap;

    background: #8FBCE6;

    color: #092C5C;

    border-radius: 8px;

    box-shadow: 0 2px 5px rgba(0,0,0,0.2);

    margin-bottom: 1.5rem;

    padding: 1rem;

    align-items: center;

    gap: 1rem;

  }


  /* Card Image container */

  .card-img {

    flex: 0 0 200px;

    max-width: 200px;

    max-height: 200px;

    display: flex;

    justify-content: center;

    align-items: center;

  }


  .card-img img {

    max-width: 200px;

    max-height: 200px;

    width: auto;

    height: auto;

    object-fit: contain;

    border-radius: 6px;

    display: block;

  }


  /* Card Text container */

  .card-text {

    flex: 1 1 250px;

    min-width: 250px;

  }


  .card-text h3 {

    margin-top: 0;

    font-size: 1.4rem;

  }

.footer {
  position: relative;
  padding: 35px 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #000;
  color: white;
  text-align: center;
}

