body {
    box-sizing: border-box;
    margin: 0;
    background-color: #dbf0fa;
    font-family: "Iceland", sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}

/* .dimScreen{
    visibility:hidden;
    filter: blur(5px);
} */

.nav-bar {
    display: flex;
    align-items: center;
    width: 100%;
    height: 80px;
    font-size: 20px;
    overflow: hidden;
}

.fix {
    position: fixed;
}

.iteem {
    padding: 20px;
    cursor: pointer;
    margin: 5px;
}


.title {
    color: black;
    display: flex;
    padding: 20px;
}

.container-2 {
    display: flex;
    margin-left: auto;
    justify-content: flex-end;
    align-items: center;
}

.title-Page {
    max-width: 100vw;
    height: 100vh;
    background-image: url("assets/beach3.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


.cover-page {
    display: flex;
    width: 100vw;
    height: calc(100vh);
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* border:black solid 1px; */
}

.coverRight,
.coverLeft {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border:black solid 1px; */
    font-size: 20px;
}

.coverRight {
    flex-direction: column;
    position: relative;
}


.center {
    text-align: left;
    max-width: 70%;
}

.coverImg {
    max-width: 50%;
    height: auto;
    padding-top: 200px;
    overflow:hidden;
}

.castImg {
    width: calc(100vw*0.2);
    height: auto;
}

.heading {
    text-align: center;
    padding-top: 100px;
}

.zlrBtn,
.grBtn,
.gfBtn,
.szBtn,
.jjBtn {
    background: none;
    border: none;
    cursor: pointer;
}

.popup-page {
    position: absolute;
    z-index: 1001; /* ensure popup sits above the overlay */
    display: flex;
    width: calc(100vw*0.5);
    height: calc(100vh*0.5);
    padding: 0;
    overflow: hidden;
    background-color: white;
    visibility: hidden;
}

.open-popup {
    visibility: visible;
}

.closeBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0;
}

.castDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    margin-bottom: 200px;

}

.centerOst {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ostPic {
    width: 60%;
}

.ostBg {
    background-image: url("assets/ost1bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.ostRight,
.ostLeft,
.ostMid {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.next,
.back {
    font-size: 80px;
}

.next,
.back {
    background: none;
    border: none;
    cursor: pointer;
}

.next:hover {
    color: white;
}

.back:hover {
    color: white;
}

.hide {
    visibility: hidden;
}

.ostInfo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.info {
    margin: 0;
    padding: 0;
}

footer {
    display: flex;
    align-items: center;
    position: absolute;
    background: #A0D8F3;
    ;
    width: 100%;
    height: calc(100vh*0.3);
    font-size: 20px;
    padding: 50px;
}

.footerText {
    color: white;
}

.momentsB {
    background-color: black;
}

a {
    text-decoration: none;
    color: black;
}

.momentsB {
    background: url('assets/ost1bg.jpg');
}

/* overlay that blurs everything underneath it */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 1000; /* sits above the page content */
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}