
/*--- General site layout + default styling ---*/

body {
    margin: 0;
    min-height: 100vh;
    display: flex; /* Vertical layout of main elements */
    flex-direction: column;
    align-items: center;
    line-height: 1.5; /* Make default line height more accessible */
    font-family: sans-serif; 
}

* {
    box-sizing: border-box;
}

header, main {
    width: 100%;
    max-width: 960px;
    padding-left: 2em;
    padding-right: 2em;
}

header {
    border-bottom: 1px solid grey;
    margin-bottom: 0.5em;
}

footer {
    margin-top: auto;
    background-color: #f3c300;
    align-self: stretch;
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
}

h1,h2,h3,h4,h5,h6 {
    color: #202945;
    margin-top: 1em;
    margin-bottom: 0.3em;
    font-weight: normal;
}

p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-size: 25px;
}

.site-header {
    display: flex;
    align-items: center;
    min-height: 7em;
}

.site-logo {
    color: #000000;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: auto;
    font-size: 2em;
    font-weight: bold;
}

.navigation {
  display: flex;
  justify-content: center;   /* centres the links horizontally */
  gap: 20px;                 /* space between links */
  align-items: center;
}

.navigation-link {
  text-decoration: none;
  font-size: 18px;
}







.navigation-link:hover {
    color: #a50909;
}
/* Table styling */

table {
    margin: 2em 0;
    border-collapse: collapse;
}

.bordered-table,
.bordered-table th,
.bordered-table td {
  border: 2px solid #000;   /* black border */
  background-color: #fff;   /* white background */
  padding: 10px;
  border-collapse: collapse;
}
.bordered-table {
  margin-left: auto;
  margin-right: auto;
}



thead {
    background-color: #eaebf5;
}

th, td {
    border: 1px solid #d7d7d7;
    padding: 0.5em 0.8em;
    text-align: left;
}


/* Form styling */

form {
    max-width: 40em;
    border: 1px solid #e5e5e5;
    /* background-color: #f3f3f3; */
    padding: 1.5em;
    margin: 2em 0;
}


label {
    font-size: 0.9em;
}

input[type='text'], input[type='email'], textarea {
    border-style: solid;
    border-width: 1px;
    border-color: #424953;
    width: 100%;
    margin-bottom: 1em;
    padding: 0.3em;
}

input[type='radio'] {
    display: inline;
    margin-right: 0.5em;
}

textarea {
    resize: none;
}

input[type='submit'] {
    width: auto;
    padding: 0.5em 2em;
    background-color: #1e3da3;
    color: white;
    border-style: none;
    border-radius: 0.3em;
    margin: 1.5em 0 0 0;
}

.form-header {
    margin-top: 0;
}

.form-description {
    margin-bottom: 1.5em;
}
a:hover{color:#ff251b}
body{background-color: #f3c300;}

.image-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 0;
  margin: 0;
}

.image-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .navigation {
    flex-direction: column;   /* stack items vertically */
    align-items: center;      /* center each item */
    justify-content: center;
  }}
  
img {
  max-width: 95%;
}

a {
  text-decoration: none;
}
