* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #282c35;
    color: #fff;
    margin: 0;
    padding: 0;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: #394049;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin: 2%;
}

.title {
    font-size: 1.5rem;
    color: #61dafb;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1rem;
    color: #ccc;
}

.project-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.project-table th,
.project-table td {
    padding: 15px;
    border-bottom: 1px solid #48515f;

}

.project-table th {
    background-color: #394049;
    font-size: 0.6rem;
    color: #61dafb;
}

.project-table td {
    font-size: 0.6em;
    color: #ccc;
}

.project-link {
    text-decoration: none;
    color: #61dafb;
    font-weight: bold;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #56a1c9;
}

/* Media Queries for Responsive Design */

@media only screen and (min-width: 600px) {
    .container {
        margin: 5%;
    }

    .title {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1em;
    }

    .project-table th,
    .project-table td {
        padding: 10px;
        font-size: 1.3rem;
    }

    .container {
        margin: 10%;
        padding: 20px;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

}