body {
    background: url(../images/bg1.jpg) no-repeat;
    background-attachment: fixed;  
    background-size: cover;
    display: grid;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .frosted-glass-effect {
    width: 32rem;
    height: 21rem;
    box-shadow: 0 3rem 3rem 0 rgba(33, 31, 31, 0.5);
    border-radius: 5px;
    position: relative;
    z-index: 1;

    overflow: hidden;
  }
  
  .frosted-glass-effect:before {
    content: "";
    position: absolute;
    background: rgba(80, 80, 80, 0.5);;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 4000px rgba(41, 41, 41, 0.5);
    filter: blur(10px);
    margin: -10px;
  }

  .bg-golden {
    background-color: #b3955d;
}
