ul {
    list-style-type:none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(209, 188, 240);

    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    gap: 20px;
}
ul li {
   float: left;   
}
ul li a {
    display: block;
    color: rgb(64, 47, 86);
    text-align: center;
    padding: 14px 14px;
    font-size:larger;
    text-decoration-line: underline;
    font-family: 'Josefin Sans';
}
ul li a hover {
    background-color: #111111;
}
h1 {
    font-family: Impact;
    text-align: center;
    color: rgb(64, 47, 86);
    font-size: clamp(24px, 6vw, 60px);
 }
 .title {
  margin-top: 30px;
 }
 .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0); 
  transition: transform 0.3s ease; 
  z-index: 1000;
}


.navbar.hide {
  transform: translateY(-100%);
}

 .MeetingPic {
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 15px rgb(0,0,0);
 }
 h2 {
    font-family:Georgia;
    text-align:center;
    color:rgb(64, 47, 86);
    font-size: 25px;  
    font-weight:100;
    margin-left:50px;
    margin-right:50px;
}
body {
  font-family: Arial, sans-serif;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
}

@media (max-width: 700px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .MeetingPic {
    max-width: 90%;
  }
}

@media (max-width: 420px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.item {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 5px rgb(0,0,0);
  background-color: rgb(209, 188, 240)
}

.item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.item p {
  margin-top: 10px;
}
.item:hover {
  transform: scale(1.03);
  transition: 0.2s;
}
h3 {
 font-family:Impact;
 text-align:center;
 color:rgb(64, 47, 86);
 font-size: 30px;   
}
p {
 font-family: 'josefin sans';
 font-size: 20px;
}
.credit {
    font-size: small;
}
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background:
    linear-gradient(rgba(243,222,253,0.7), rgba(243,222,253,1)),
    url("backgroundbetatest.png");
  background-repeat:250px 200px;
}

/*footer*/
.footer {
    background-color: rgba(243, 222, 253);
}
footer { 
    text-align:center; 
    padding:10px;
    font-size:350;
    font-family:Helvetica;
 }