html {
    scroll-snap-type: y mandatory;
}

body {
    background: rgb(201, 0, 0);
    
}

h1 {
    font-family: 'JBLACKLETTER', sans-serif;
    font-size: 50px;
    transform: scaleY(5);
    /* margin-bottom: px;
    margin-top: 00px; */
    margin-left: 30px;
    margin-right: auto;
    line-height: 75%;
}

@font-face {
    font-family: 'JBLACKLETTER';
    src: url('JBLACK.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;  
}

.frame-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;

}

.frame {
   position: fixed;
  top: -60px;
  left: -80px;
  width: 110vw;
  height: 110vh;
  object-fit: fill; /* or 'cover' if you want it to crop */
  z-index: 10;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }


.image {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto; 
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* margin-bottom: 200px;
    margin-top: 500px; */
    box-shadow: 0 0 20px 10px white;

}

.panel {
    width: 100%;
    height: 100vh;
    /* background: greenyellow; */
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
}