/* Apply full-page gradient */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #707070, #353535);
    font-family: Arial, sans-serif;
    color: #333;
}

/* Container for the image */
.container {
    width: 1200px;
    height: 850px;
    display: flex;
    flex-direction: column; /* Stack text above image */
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #ffffff, #0004ff); /* Light background */
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2); /* Lifted effect */
    position: relative;
}

/* Title styling */
.title {
    font-size: 56px; /* Increased font size */
    font-weight: bold;
    color: #ffffff; /* White text for contrast */
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 1); /* Stronger shadow effect */
    margin-bottom: 30px; /* More space between text & image */
    position: absolute;
    top: 4%; /* Moves text upwards */
}

/* Image inside the container */
.container img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px; /* Smooth edges */
}

/* Proceed Button */
.proceed-btn {
    position: absolute;
    top: 53%;  /* Adjust vertical position */
    left: 54.7%; /* Adjust horizontal position */
    transform: translate(-50%, -50%); /* Centering */
    
    font-size: 24px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    background: transparent;
    border: 2px solid rgb(0, 0, 0);
    padding: 15px 23px;
    border-radius: 100px;
    cursor: pointer;
    animation: blink 1.5s infinite;
    transition: 0.3s;
}

/* Blinking Animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Hover Effect */
.proceed-btn:hover {
    background: rgb(0, 255, 76);
    border-color: #00c51a;
}

/*Screen1*/
.contscr1 {
    width: 1200px;
    height: 850px;
    display: flex;
    flex-direction: column; /* Stack text above image */
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #ffffff, #858585); /* Light background */
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2); /* Lifted effect */
    position: relative;
}

.clipboard {
    position: absolute;
    left: 45%;
}

.titlesrc1 {
    position: absolute;
    left: 20%;
    font-size: 56px; /* Increased font size */
    font-weight: bold;
    color: #ffffff; /* White text for contrast */
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 1); /* Stronger shadow effect */
    margin-bottom: 30px; /* More space between text & image */
    position: absolute;
    top: 4%; /* Moves text upwards */
}

/* Popup Container */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Popup Box */
.popup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    max-width: 300px;
}

/* Input Field */
.popup input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #bbb;
}

/* Buttons */
.popup button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    background: #4e54c8;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.popup button:hover {
    background: #3b42a1;
}

