.navbtn img{
	width:150px;
}

.navbtn img:hover{
	width:150px;
	content:url("../../assets/game/black_contact.png");
}

.pb-5{
	margin-top: 6rem!important;
}

.mt-5 {
    margin-top: 0rem !important;
}

.my-5 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
}

#overlay {
            display: block; /* Initially hidden */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        /* Style for the pop-up box */
        #popup {
            width: 400px;
            height: 400px;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: transparent;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            border: 2px solid #FFFFFF;
        
        }

        /* Close button style */
        .close-btn {
            background-color: #f44336;
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
            display:none;
        }
        
        .close-btn:hover {
            background-color: #d32f2f;
        }