



body {
    overflow: hidden;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

.root {

    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-color: #e7e7db;
    gap: 20px;

    background: url(bg.webp);
    background-size: cover;
    overflow: hidden;

    position: relative;

}

@font-face {
    font-family: 'solomon b';
    src: url(SolomonSans-Trial-Black.otf);
  }

  @font-face {
    font-family: 'solomon n';
    src: url(SolomonSans-Trial-Normal.otf);
  }


.shad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.2);
    /* backdrop-filter: blur(5px); */
}



img.effect {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.0;
    z-index: 10;
   
}
img.yearbook {
    width: 540px;

    border: 2px solid #000;
    padding: 20px;
}

@media only screen and (max-width: 600px) {
    img.yearbook {
        width: 90vw;
    
        border: 2px solid #000;
        padding: 20px;
    }
}


h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #000;

    font-family: 'solomon b';
}

p.ca {
    font-size: 1.3rem;
    color: #000;
    font-family: 'solomon n';
    width: 100vh;
    text-align: center;
}


.btns {
    display: flex;
    gap: 10px;

}.btns .btn {
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background-color: #000;

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}




.book {
    position: relative;
}
.book img.bookImg {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* padding: 0 0 0 25px; */
    gap: 10px;
    /* rotate: 0.5deg; */
}