
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
header {
    
    color: #1E428E;
    padding: 1rem 0;
    text-align: center;
    font-family: Georgia, serif; 
    
}



nav {
    padding: 0;
    display: flex;
    justify-content: center;
    border-top: 1.5px solid #1E428E; /* Top border */
    border-bottom: 1.5px solid #1E428E; /* Bottom border */
    

}
nav a {  /* Text Decoration */
    padding: 0.8rem;
    text-decoration: none;
    color: #1E428E;
}
nav a:hover {  /* hover  */
    background: lightgray;
    text-shadow: -.25px -.25px 0 #1E428E, 
    .25px .25px #1E428E;
}


main, .Particle { 
    top: 2%;
    left: 20%;
    padding: 4%;
    text-align: left;
    color: #1E428E;
    padding-bottom: 20%;
    display: flex;
    flex-wrap: wrap;
}

/* Float four columns side by side */
.column {
    float: left;
    width: 25%;
    padding: 0 10px;
  }
  
  /* Remove extra left and right margins, due to padding in columns */
  .row {margin: 0 -5px;}
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

/* Card Container */
.card {
    width: 300px;  /* Card width */
    border: 1px solid #ddd;  /* Light border around the card */
    border-radius: 10px;  /* Rounded corners */
    overflow: hidden;  /* Ensures child elements don't overflow */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  /* Light shadow */
    background-color: #fff;  /* White background */
    font-family: 'Arial', sans-serif;  /* Basic font for text */
    margin: 20px;  /* Spacing between cards */
    float: left;
    
    
}

.text {
    font-size: 20px;
    padding-left: 20px;
    padding-top: 20%;
    float: left;
  }

/* Image within the card */
.card img {
    width: 100%;  /* Makes the image stretch to fill the card */
    height: 285px;  /* Fixed height for the image */
    object-fit: cover;  /* Ensures the image covers the area without distortion */
}

/* Card Body */
.card-body {
    padding: 15px;  /* Padding around the text */
    text-align: center;  /* Center-aligns text */

}


/* Title inside the card */
.card-body .card-title {
    font-size: 20px;  /* Font size for the title */
    font-weight: bold;  /* Bold title */
    color: #1E428E;  /* Dark text color */
    margin: 10px 0;  /* Vertical spacing around title */
}

/* Description or extra text */
.card-body .card-description {
    font-size: 14px;  /* Smaller text size */
    color: #1E428E;  /* Lighter text color */
    margin-top: 10px;  /* Space between description and title */
    margin-bottom: 10px;
}

.card-body .experience {
    font-size: 14px;  /* Smaller text size */
    color: #1E428E;  /* Lighter text color */
    margin: 10px 0;  /* Space between description and title */
    

}
.table {

    float: left;
}

@media screen and (max-width: 920px) {
    
    th, td {
        padding: 10px;
        float: left;
      }
}


@media screen and (min-width: 597px) {
    
    th, td {
        padding: 10px;
        float: none;
      }
}


iframe {
    border: none;
    width: 100%;
    padding-top: 4%;
    padding-bottom: 6%;
    margin-bottom: 2%;
}


footer {
    background-color: #1E428E;
    color: #fff;
    position: fixed;
    padding-left: 2%;
    text-align: left;
    top: 92%;
    bottom: 0;
    width: 100%;
}


.court-image {
    border-right: 50px solid #414042 !important;
  }

  @media only screen and (max-width: 950px) {
    .court-image {
      border-right: none !important;
      border-bottom: 40px solid #414042 !important;
    }
  }

  
  .Pgrid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    display: flex;
    flex-wrap: wrap;
  }
  
  .Pcard {
    width: 300px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
  }
  
  .Pcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  }
  
  .article p {
    line-height: 1.7;
    font-size: 17px;
    color: #444;
  }

