html{
    font-family: "miller-banner", serif;
    font-weight: 400;
    font-style: normal;
}

body{
    margin: 0;
    text-align: left;
    font-family: "miller-banner", serif;
    font-weight: 400;
    font-style: normal;
    margin-left: 50px;
}

header{
    margin-top: 50px;
    margin-left: 12px;
    margin-bottom: 100px;
}

h1{
    margin-bottom:0;
    font-weight:400;
}

h2{
    margin-top:0;
    font-weight:400;
}

.accordion {
    /* background-color: #ffffff; */
    /* color: #444; */
    text-align: left;
    cursor: pointer;
    /* padding: 18px; */
    width: 100%;
    border: none;
    outline: none;
    /* transition: 0.4s; */
    font-family: "miller-banner", serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 60px;
    background-color: white;
  }
  
  .active, .accordion:hover {
    font-style: italic;
    color: rgb(0, 0, 172);
    /* background-color: #ccc; */
  }
  
  .panel {
    position: relative;
    width: 50%;
    padding: 0 18px;
    /* background-color: white; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: white;
    height: 500px;
    align-items: center;
  }

  img{
    width: 100%;
    float: left;
    transition: 0.2s ease;
  }

   .text{
    visibility: hidden;
    opacity: 0;
    /* position: relative; */
    text-align: left;
    text-decoration: none;
    color: black;
    font-size: 50px;
    font-weight:700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.2s ease;
  }


  a:hover img{
    -webkit-filter: blur(4px) grayscale(1);
    filter: blur(4px) grayscale(1);
  }

  a:hover .text{
    visibility:visible;
    opacity: 1;
    
  }

  .container .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  footer{
    clear: both;
    margin-top: 150px;
  }

  p{
    margin:0;
  }