body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header img.header-image {
    width: 100%;
    height: auto;
}

section {
    padding: 20px;
    text-align: center;
}

#intro h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

#intro p {
    font-size: 15px;
}

.container h2 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}


 .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .content {
    height: 100px;
    width: 45%;
    height: 220px;
    margin: 2.5%;
    border-radius: 2%;
    object-fit: cover;
    display: none;
  }
  #loadMore {
    width: 150px;
    color: #5138AD;
    display: block;
    text-align: center;
    margin: 20px auto;
    padding: 10px;
    border-radius: 40px;
    border: 1px solid transparent;
    background-color: #D9DE1A;
    transition: .3s;
    text-decoration: none;
    font-weight: bold;
  }
  #loadMore:hover {
    color: #5138AD;
    background-color: #D9DE1A;
    border: #D9DE1A;
    text-decoration: none;
  }
  .noContent {
    width: 150px;
    color: #5138AD;
    display: block;
    text-align: center;
    margin: 20px auto;
    padding: 10px;
    border-radius: 40px;
    border: 1px solid transparent;
    background-color: #D9DE1A;
    transition: .3s;
    text-decoration: none;
    font-weight: bold;
  }


#menuToggle
{
  display: block;
  /* You can also use relative/absolute here if you want to stay on the top */
  position: fixed;
  top: 50px;
  background-color: #BA22B2;
  padding: 15px 14px 11px 15px;
  border-radius: 8px;
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #D9DE1A;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 65px;
  height: 55px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 6px;
  position: relative;
  
  background: #BA22B2;
  border-radius: 3px;
  background-color: #D9DE1A;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #D9DE1A;
}

#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
  
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
  
}

#menu
{
  position: absolute;
  width: 393px;
  height: auto;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #BA22B2;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
  text-align: center;
  
}

#menu li label
{
  cursor: pointer;
  color: #D9DE1A;
  font-weight: bold;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}

footer {
    background-image: url('Material/Footer-img.svg');
}

footer img {
    width: 45px;
    height: 45px;
} 

footer #insta {
    position: relative;
    bottom: -1px;
    left: 1px;
}

footer #tiktok {
    position: relative;
    bottom: -1px;
    right: -20px;
}

footer {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 87px;
}