/* Your custom CSS styles here */
body,
html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    /* Hide scrollbar */
    font-family: source-serif-pro, Georgia, Cambria, "Times New Roman", Times, serif;
    /* Set default font family */
    
    color: #ede8d9;
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
h1 {
    font-size: 16rem;
    text-shadow: 0 0 20px rgba(99,76,44, 1);
    -webkit-text-stroke: 0.1px rgb(255, 250, 247);
    /* WebKit browsers */
    color: rgb(255, 250, 247);;

   /* text-stroke: 2px white;*/
    /* Future browsers */

   
}
.desktop{

    display: block;
}
.mobile{
    display: none;
}
@media only screen and (max-width: 1079px) {
    h1 {
        font-size: 11rem; /* Adjust font size for smaller screens */
    }
    .desktop{

        display: none;
    }
    .mobile{
        display: block;
    }
}

@font-face {
    font-family: 'Canterbury';
    src: url('./font/Canterbury-Regular.woff2') format('woff2'),
        url('./font/Canterbury-Regular.woff') format('woff');
    
    font-display: swap;
}
.canterbury{
    font-family: 'Canterbury';
    font-weight: 500;
    font-style: normal;
}
.swiper-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Place behind content */
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    height: 100%;
}

.content {
    padding: 20px;
    overflow-y: auto;
    height: 100%;
    max-width: 900px;
    box-sizing: border-box;
    margin-left:auto; margin-right: auto;
}

.title {
    text-align: center;
    margin-top: 20px;
    /* Adjust as needed */
}



.content p{
    font-size: 1.8rem;
    line-height: 2.89em;
    /* Spaced Display */
    letter-spacing: .06em;
    display: inline;
    padding: .4em;
    /* background: rgba(255, 228, 202, 0.72); */
    background: rgba(254, 241, 221, .92);
    color: rgb(99,76,44);
}
.content a{
    font-weight: bold;
    color:rgb(67, 23, 209)
}
.pwrap{
    display:block;
    margin-bottom: 300px;
}
/* Add any additional styles for your content */

ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.254rem;
    line-height: 2.89em;
    /* Spaced Display */
    letter-spacing: .06em;
}

li {
    background-color: rgba(254, 241, 221, .92);
    position: relative; /* This is important for the pseudo-element */
}

.leading{
    font-size: 4rem !important;
    line-height: 8rem  !important;
    line-height: 2.89em;
    font-weight: bold;
}


