
        
body {
    background: url('Own_images/Image13.JPG') center center/cover no-repeat;
    font-family: 'Poppins', sans-serif;
    color: rgba(30, 128, 68, 0.658);
    margin: 0;
}

header, footer {
    background-color: #01490baf;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #aeb9aeef;
    text-decoration: none;
    font-weight: bold;
    transition: rgb(255, 0, 0);
}

nav ul li a:hover {
    color: #00acee;
}

h1 {
    text-align: center;
    margin-top: 30px;
}

.boxed-content {
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.6);
    margin: 30px auto;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

.boxed-content:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.03);
}

footer p, footer ul {
    color: #ccc;
    font-size: 14px;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #aaa;
    text-decoration: none;
}

footer ul li a:hover {
    color: #fff;
}

.social-icons a {
    color: white;
    margin: 0 8px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #1da1f2;
}

@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .boxed-content {
        margin: 20px;
    }
}