
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.project {
    display: inline-block;
    padding: 12px 24px;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.project:hover {
    background-color: #218838;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    h2 {
        font-size: 1.5rem;
    }

    .project {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
.home {
    display: flex;
    padding: 10px 22px;
    background-color: #343a40; 
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    justify-content: center;
    align-items: center;

}

.home:hover {
    background-color: #495057; 
    transform: scale(1.05);
    background-color:rgb(199, 149, 58) ;
}

.home:active {
    transform: scale(0.97);
    background-color: rgb(199, 149, 58);
}

@media (max-width: 600px) {
    .home {
        font-size: 0.95rem;
        padding: 8px 18px;
    }
}

