
.thingys{
  color: #b8e2c8;
  color: #bff0d4;
  color: #abc8c7;
  color: #a5b5bf;
  color: #c2a5d6;
}

body{
  background-color: #bff0d4;
  background-image: url("https://www.transparenttextures.com/patterns/batthern.png");
  margin: 0;
  transition: background-color 0.3s, color 0.3s;
}

.Heading{
  font-size: 30px;
  color: #000;
  font-family: Arial, sans-serif;
  text-align: center;
  text-decoration: underline;
}

.subheading{
  font-size: 30px;
  text-decoration: underline;
}

.paragraph{
  font-size: 25px;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  background-color: #abc8c7;
  border: 2px solid #000;
}

.nav li {
  border-right: 1px solid #000;
}

.nav li a {
  display: block;
  color: black;
  text-decoration: none;
  padding: 20px 20px;
  font-size: 30px;
  
}

.nav li a:hover {
  background-color: #a5b5bf;
}

/* Search item */
.nav-search {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid #000;
}

.nav-search form {
  display: flex;
  align-items: center;
}

/* Search input */
.nav-search input {
  background-color: transparent;
  border: none;              /* no border */
  outline: none;
  font-size: 23px;
  padding: 20px 5px;
  width: 160px;
  color: black;
  font-family: Arial, sans-serif;
}
.nav-search input::placeholder {
  color: #7c7c7c;   
  font-family: Arial, sans-serif;
}


/* Search button (icon only) */
.nav-search button {
  background: none;
  border: none;              /* no border */
  cursor: pointer;
  font-size: 20px;
  padding: 20px 5px;
}

/* Hover effect to match links */
.nav-search:hover {
  background-color: #a5b5bf;
}

.nav-search button:hover {
  opacity: 0.7;
}

/* Logo */
.nav-logo {
  margin-left: auto;
  border-right: none;
  padding-right: 20px;
}

.nav-logo img {
  height: 70px;
  display: block;
}

.container {
  width: 90%;
  height: auto;
  margin: 40px auto;
}
  
.Edu-Container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  /* normal boxes */
  .box {
    width: 100%;
  }
  
  /* table spans BOTH columns */
  .table-box {
    grid-column: 1 / -1; /* full width */
    display: flex;
    justify-content: center; /* center table horizontally */
  }
  


.table{
  grid-column: 1/4;
  grid-row: 1;
}
.full{
  grid-column: 1/3;
}

.container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.containerfull{
  display: grid;
  text-align: center;
}

footer{
  background-color:#abc8c7;
  width: 100%;
  height: 253px;
}


.links a {
  color: #000;
  background-color: #abc8c7;
  border: 2px solid #000;
  padding: 10px;
  display: inline-block;
}

.links a:hover {
  background-color: #a5b5bf;
}

/* this is my second page stuff
/* Table ID */ 
  #gcse-table {
    width: 50%;
    border-collapse: collapse;
    margin: 30px auto;
    font-family: Arial, sans-serif;
  }
  
  /* Header row */
  .table-header {
    background-color: #1f3a5f;
    color: white;
  }
  
  .table-header th {
    padding: 12px;
    text-align: left;
  }
  
  /* Table rows */
  .table-row td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
  
  /* Alternating row colours */
  tbody .table-row:nth-child(even) {
    background-color: #f4f6f8;
  }
  
  tbody .table-row:nth-child(odd) {
    background-color: #ffffff;
  }
  
  /* Hover effect */
  .table-row:hover {
    background-color: #e1ecf4;
  }
  
  /* Grade styling */
  .grade {
    font-weight: bold;
    text-align: center;
  }
  .TopInterestsContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .BottomInterestsContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .WebContainer
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.WebContainer2
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: right;
}
.DataContainer{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.DataContainer2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ProgrammingContainer{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ProgrammingContainer2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
    /* normal boxes */
    .box {
      width: 100%;
      text-size-adjust: none;
      height: auto;
    }
    .img{
      scale: 50%;
      height: auto;
      width: auto;
      align-items:left;
      
    }
    .img2{
      scale: 30%;
      height: auto;
      width: auto;
    }
    .large{
      scale: 200%;
      height: auto;
      width: auto;
    }
    .border{
      border: #000, 4px, solid;
    }
  /* ===============================
   Contact Form Styling
   ADD TO END OF CSS FILE
   =============================== */

.contact-form {
  grid-column: 1 / -1; /* span full width of container grid */
  background-color: #abc8c7;
  border: 2px solid #000;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  margin-right: 120px;
  font-family: Arial, sans-serif;
}

.contact-form label {
  display: block;
  font-size: 22px;
  margin-bottom: 20px;
  color: #000;
}

.contact-form input {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  font-size: 18px;
  border: 2px solid #000;
  background-color: #bff0d4;
  color: #000;
  font-family: Arial, sans-serif;
  margin: 8px auto 0 auto; 
  
}

.contact-form input::placeholder {
  color: #7c7c7c;
}

.contact-form input:focus {
  outline: none;
  background-color: #b8e2c8;
}

/* Send button */
.contact-form button {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 22px;
  background-color: #c2a5d6;
  border: 2px solid #000;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

.contact-form button:hover {
  background-color: #c786f1;
}
