
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin: 40px 0;
    color: white;
    font-size: 36px;
    letter-spacing: 1px;
}

.projects {
    width: 40%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: auto;
    margin-top: 40px;

}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.card h2 {
    margin-bottom: 10px;
    color: #1e3c72;
}

.card p {
    margin-bottom: 15px;
    color: #555;
}

.card a {
    display: inline-block;
    text-decoration: none;
    background-color: #1e3c72;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    transition: 0.3s;
}

.card a:hover {
    background-color: #2a5298;
}