body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
}
.bg-image {
    max-width: 100%;
    max-height: 100%;
}
.btn-container {
    width: 21rem;
    border-radius: 13px;
    display: flex;
    gap: 2rem;
    position: fixed;
    background-color: #000;
    bottom: 8rem;
}

.image-section img {
    width: 5rem;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.text-section {
    line-height: 2.5rem;
    display: flex;
    color: #ffff;
    font-weight: bold;
    font-size: 1.2rem;
}

.overlay { 
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background-color:rgba(0,0,0,0.8); 
    z-index:1000; 
}
.tip-box { 
    display:none;
    position:fixed; 
    top:20px; 
    right:20px; 
    background-color:#fff; 
    padding:10px; 
    border-radius:5px; 
    box-shadow:0 2px 4px rgba(0,0,0,0.8); 
    z-index:1001;
}
.tip-box .tiparrow { 
    display:block; 
    width:0; 
    height:0; 
    border-left:10px solid transparent; 
    border-right:10px solid transparent; 
    border-bottom:10px solid #fff; 
    position:absolute; 
    top:-10px; 
    right:10px;
}