* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
}

.main-container {
    height: 100%;
    width: 100%;
    background-image: url('Stonemain.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    /* Fallback background color in case image fails to load */
    background-color: #ffffff;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align:margin-bottom
    color: #333333;
    width: 80%;
    max-width: 800px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cta-button {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3a7bc8;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .content {
        width: 90%;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .content {
        width: 95%;
    }
}