
h1{
    font-size: 50px;
    color:white;
    text-align: center;   
}
body {
    margin: 0;
    background: #0A1F44;
    font-family: Arial, sans-serif;
    text-align: center; 
}
.projects {
    justify-content: center;
    margin: 50px auto;
    display: grid;
    width: 20%;
    gap: 30px;
}
@media (max-width: 768px) {
    .projects{
        grid-template-columns: 1fr;
    }
}

.project-box {
    text-decoration: none;
}

.box {
    background: #eee;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid black;
    transition: 0.3s;
    font-size: 30px;
    color: purple ;
    font-size: 35px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.box:hover {
    background: white;
    transform: scale(1.05);
}