
/* Page background and base styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f6fa;
    color: #333;
}

/* Header Section */
header {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    top: 0;
   
}

header h1 {
    margin: 0;
    font-size: 32px;
    color: #2c3e50;
}
nav ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    font-size: 18px;
    color: #2c3e50;
    font-weight: bold;
}
body {
    background-image: url("background\ .jpg");
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center;
}



/* Welcome box */
.welcome-box {
    background: #ffffff;
    width: 80%;
    margin: 40px auto;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
}

.welcome-box h2 {
    color: #3498db;
}
/* Background */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #ffb6c1, #ffcce0);
}

/* Top Heading Center */
header h1 {
    text-align: center;
    font-size: 40px;
    margin: 20px 0;
}

/* Navigation buttons center */
nav {
    text-align: center;
    margin-bottom: 20px;
}

nav a {
    display: inline-block;
    margin: 0 10px;
    padding: 8px 16px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: bold;
    border: 2px solid #333;
    border-radius: 8px;
    transition: 0.3s;
}

nav a:hover {
    background: #333;
    color: white;
}

/* Paragraph & text size */
.content {
    width: 80%;
    margin: auto;
    font-size: 20px;
    line-height: 1.6;
}

.content h2 {
    font-size: 28px;
}

/* Footer big and center */
footer {
    background: #223344;
    color: white;
    text-align: center;
    padding: 50px 0;
    margin-top: 40px;
    font-size: 20px;
}
@media (max-width: 600px) {
    .content {
        width: 95%;
        font-size: 18px;
    }

    nav a {
        margin: 5px;
        padding: 6px 12px;
        font-size: 14px;
    }
    header h1 {
        font-size: 28px;

    }
    ul, li {
        font-size: 14px;
    }
}



