	.popup-overlay {
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background-color: rgba(0, 0, 0, 0.7);
	    z-index: 999;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	}
	
	.popup-website {
	    width: 600px;
	    background-color: white;
	    border: 10px solid white;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    align-items: center;
	    position: fixed;
	    left: 50%;
	    top: 50%;
	    transform: translate(-50%, -50%);
	    z-index: 1000;
	    border-radius: 10px;
	}
	
	@media (max-width: 700px) {
	    .popup-website {
	        width: 90%;
	    }
	}
	
	.popup-mobil {
	    width: 95%;
	    background-color: white;
	    border: 10px solid white;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    align-items: center;
	    position: fixed;
	    left: 50%;
	    top: 50%;
	    transform: translate(-50%, -50%);
	    z-index: 1000;
	    border-radius: 10px;
	}

	
	.popup-website img {
	    max-width: 100%;
	    max-height: 100%;
	}
	.popup-mobil img {
	    max-width: 100%;
	    max-height: 100%;
	}
	
	.close-button {
	    position: absolute;
	    top: -1px;
	    right: 0px;
	    font-size: 20px;
	    background-color: #FFFFFF;
	    padding: 3px 5px 5px 12px;
	    border-bottom-left-radius: 10px; 
	    border: none;
	    cursor: pointer;
	    color: black;
	}