/* Background and general styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('assets/asset.1.webp') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.5rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Media query for smaller screens (e.g., iPhones) */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem; /* Adjust the font size for smaller screens */
    }

    p {
        font-size: 1.2rem; /* Adjust the font size for smaller screens */
    }

    .cta-button {
        font-size: 1.2rem; /* Adjust the font size for smaller screens */
    }
}
