body {
    background-color: #ddd;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.back {
    height: 50px;
    width: 50px;
    background-color: white;
    position: absolute;
    margin: 10px;
    border-radius: 5px;
}

.back i {
    color: #0070c0;
    font-size: 30px;
    margin: 10px;
}

.title {
    background-color: #0070c0;
    padding: 10px 20px;
    text-align: center;
    color: white;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    position: fix;
}

.title h1 {
    margin: 0;
    font-size: 48px;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.project-list div {
    background: #f9f9f9;
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 10px;
    transition: background 0.5s, transform 0.5s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    height: 250px;
}

.project-list div h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.project-list div a {
    text-decoration: none;
    color: white;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
}


.project-list div:hover {
    background: #0070c0;
    color: white;
    transform: translateY(-10px);
}

a {
    text-decoration: none;
    color: black;
}