
* {
    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;   
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  
  background: 
  url("https://i.pinimg.com/736x/09/02/ee/0902eee992301f6e51f740bd3787b8d0.jpg") no-repeat center/cover;
  filter: blur(20px);
  z-index: -1;
}



h1 {
    margin: 40px 0;
    color:black;
    font-size: 36px;
    letter-spacing: 2px;
    font-weight: bold;
}

.projects {
    width: 50%;
    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;
    border: 2px solid rgba(255, 255, 255, 0.6);
  
}

.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;
}