
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(to right, #ffecd2, #fcb69f);
            color: #333;
        }

        header {
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            text-align: center;
            padding: 40px 0;
            font-size: 25px;
            animation: fadeIn 2s;
        }



        footer {
            text-align: center;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            margin-top: 217px;
        }
            h2 {
        color: #007c91;
        margin-top: 30px;
    }
    p {
        line-height: 1.6;
        margin-bottom: 20px;
    }
    a {
        color: #007c91;
        text-decoration: none;
        font-weight: bold;
    }
    a:hover {
        text-decoration: underline;
    }
            nav {
            display: flex;
            justify-content: center;
            gap: 30px;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 15px 0;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            transition: 0.3s;
        }

        nav a:hover {
            color: #e91e63;
            transform: scale(1.2);
        }