
body {
        background: linear-gradient(to bottom, #2A7B9B 0%, #57C785 50%, #EDDD53 100%);
}

.centerall {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.date_entry {
    width: 90%;
    border: 2px solid black;
    border-radius: 3%;
}

.date {
    padding: 15px;
    text-align: left;
    font-size: 30px;
    text-decoration: underline;
    width: 100%;
}

.entry_details {
    padding: 15px;
    text-align: left;
    width: 100%;
}

.table_head {
    border: 1px solid black;
    padding: 15px;
    background-color: salmon;
    text-align: left;
    width: 5%;
}

.table_number {
    border: 1px solid black;
    padding: 15px;
    background-color: skyblue;
    text-align: left;
    width: 5%;
}

.table_exercise {
    width: 60%;
    border: 1px solid black;
    padding: 15px;
    background-color: white;
    text-align: left;
}

.table_weight {
    width: 10%;
    border: 1px solid black;
    padding: 15px;
    background-color: white;
    text-align: left;
}

.table_type {
    width: 20%;
    border: 1px solid black;
    padding: 15px;
    background-color: white;
    text-align: left;
}

.table_reps {
    border: 1px solid black;
    padding: 15px;
    background-color: white;
    text-align: left;
    width: 5%;
}

.allcontain {
    border: 2px solid black;
    border-radius: 0.5%;
    background: rgba(255, 255, 255, 0.2);
    padding: 2%;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.latestnews {
    border: 2px solid black;
    border-radius: 5px;
    background: lightgoldenrodyellow;
    padding: 2%;
    width: 30%;
    height:200px;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 40px;
}

.navbar {
    list-style-type: none;
    overflow: hidden;
    text-align: center;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

.navbarlink {
    float: left;
    border: black solid 2px;
    margin: 5px 5px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
}

.navtext {
    display: block;
    color: white;
    text-align: center;
    padding: 8px 16px;
    text-decoration: none;
}

.navtext:hover {
    color: black;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;

}

/* Container styling */
.Spartan {
    display: grid;
    /* This creates a responsive grid that fits as many 250px columns as possible */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

/* Individual item styling */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 1px solid black;
    transition: transform 0.3s ease;
}

/* Image behavior */
.gallery-item img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensures images aren't stretched */
    display: block;
}

/* Hover effect */
.gallery-item:hover {
    transform: scale(1.5);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.container {
  display: grid;
  grid-template-areas:
    "header header"
    "header2 header2"
    "menu content"
    "footer footer";
  grid-template-columns: 1fr 5fr;
  gap: 3px;;
  padding: 5px;
}
.container div {
  padding: 10px;
  border: black solid 1px;
}
.container div.header {
  grid-area: header;
  text-align: center;
}

.container div.header2 {
  grid-area: header2;
  text-align: left;
}

.container div.menu {
  grid-area: menu;
}
.container div.content {
  grid-area: content;
}
.container div.footer {
  grid-area: footer;
  text-align: center;  
}

.logo {
    height: 80px;
    width: 80px;
}

.banner {
    border: black solid 1px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 5px 10px;
}