html {
    height: 100%;
    width: 100%;
    background-color: #000000;
    color:#A020F0;
    font-family: 'Bebas Neue', bold;
  }
  
  body {
    display:flex;
    flex-flow: wrap column;
    align-items: center;
  }
  
  h1 {
    font-size: 60px;
  }
  
  .explanation {
    font-size: 30px;
  }
  
  h1 {
    display: flex;
    justify-content: center;
  }
  
  hero {
    background-image: url("resources/synlore.jpg");
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    padding: 200px;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
    flex-flow: wrap column;
    align-items: center;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #A020F0;
    min-width: 500px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px;
    z-index: 1;
    flex-wrap: wrap;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  /* Styles for images */
  .image {
    max-width: 100px;
    height: auto;
    cursor: pointer;
    transition: transform 0.5s ease;
  }
  
  .image.enlarged {
    transform: scale(3.0);
  }