body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f3f4f6;
    color: #333;
}

header {
    background: linear-gradient(to right, #0000ff, #8a2be2);
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 15px;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    background-color: #ffffff;
}

h1, h2 {
    color: #4b0082;
    text-align: center;
}

a {
    color: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-block1 {
    background: linear-gradient(to right, #0000ff, #8a2be2);
    border-radius: 10px;
    padding: 100px;
    margin-top: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-block1 img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.project-block1 h3 {
    color: #fcfafd;
    margin-bottom: 10px;
}

.project-block1 p {
    color: #f8f3f3;
}

.project-block1:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}


.project-block2 {
    background: linear-gradient(to right, #0000ff, #8a2be2);
    border-radius: 10px;
    padding: 100px;
    margin-top: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 100px;
}

.project-block2 img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.project-block2 h3 {
    color: #fcfafd;
    margin-bottom: 10px;
}

.project-block2 p {
    color: #f8f3f3;
}

.project-block2:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}


footer {
    background: linear-gradient(to right, #0000ff, #8a2be2);
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}