 body {
        font-family: Arial, sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: #333;
        background-color: #f5f5f5;
    }
    button {
        background-color: #4CAF50;
        color: white;
        border: #6372d2 3px 3px 3px 3px;
        margin-top: 5px;
        border-radius: 15px 15px 15px 15px;
        padding: 10px 20px;
        cursor: pointer;
    }
    button:hover {
        background-color: #3e8e41;  
        border-radius: 15px 15px 15px 15px;
    }
    .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }
   .project {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        border-color: #6372d2;
        border: #6372d2 3px 3px 3px 3px;
        border-radius: 10px;
        padding: 20px;
    }
   .demos {
        width: 48%;
        margin-bottom: 20px;
        background-color: #f5f5f5;
        border-color: #6372d2;
        border: #6372d2 3px 3px 3px 3px;
        border-radius: 10px 10px 10px 10px;
        padding: 10px;
    }
   .demos-title {
        margin-bottom: 10px;
    }
   .demos-content {
        margin-bottom: 10px;
    }
   .demos-btn {
        text-align: center;
    }
    .demos-btn a {
        display: inline-block;
        padding: 10px 20px;
        background-color: #4CAF50;
        color: white;
        border-radius: 5px;
        text-decoration: none;
    }
    .demos-btn a:hover {
        background-color: #3e8e41;
    }
    @media (max-width: 768px) {
       .demos {
            width: 100%;
        }
    }
    @media (max-width: 480px) {
        .demos {
            width: 100%;
        }
    }
    @media (max-width: 320px) {
        .demos {
            width: 100%;
        }
    }
    h1 {
        text-align: center;
        margin-bottom: 20px;
    }
    p {
        text-align: justify;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    h2 {
        margin-bottom: 10px;
    }
    .dark-mode {
        background-color: #333;
        color: #fff;
    }
    .dark-mode button {
        background-color: #fff;
        color: #333;
        border: #fff 3px 3px 3px 3px;
    }
    .dark-mode button:hover {
        background-color: #f2f2f2;
        border-radius: 15px 15px 15px 15px;
    }
    .dark-mode .project {
        border-color: #fff;
    }
    .dark-mode .demos {
        border-color: #ffffff;
        background-color: #333;
        border: #6372d2 3px 3px 3px 3px;
        border-radius: 10px 10px 10px 10px;
    }
    .dark-mode .demos-btn a {
        background-color: #fff;
        color: #333;
    }
    .dark-mode .demos-btn a:hover {
        background-color: #f2f2f2;
    }