body {
    
    background-image: url('../src/index_page1.jpg');
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
    background-attachment: fixed; 
    text-align: center;
}


button {
    padding: 10px 30px;
    font-size: 16px;
    background-color: #0022ffee;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 30px;
    margin-right: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
   
}

/* button:hover {
    background-color: #0056b3;
} */

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color:#31465c;
    margin: 15% auto;
    padding: 20px;
    border: 0px solid #888;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.para{
    font-size: 80px;
    color: #ffff;
    margin-top: -10px;
    
}
.goto{
 
   
  padding: 15px;
    background-image: url('../src/arrow_button.png');
    background-size: cover; /* Ensure the image covers the entire page */
    background-repeat: no-repeat; /* Prevent image repetition */
    background-position: center center; /* Center the image */
    position: absolute;
    bottom: 50px;

    width: 100px;
    height: 25px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    
}
h2{
    color: #ffff;
    
}