/* Layout */
body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    display: flex;
    justify-content: center;
}

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

h2{
    display: inline;
    font-size: xx-large;
}

.project {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.05);
}

.project_image img {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.centered {
    width: 100%;
    max-width: 700px;
    padding: 40px 20px;
}

.tech_icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.tech_icons img {
    height: 22px;
    border-radius: 8px;
}

.tech_icons h2 {
    margin: 0;
    font-size: 1.3rem;
}

.project_description {
    /* margin-top: 15px; */
    text-align: left;
}

.description {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .centered {
        padding: 20px 10px;
    }

    .project {
        padding: 15px;
    }

    .tech_icons h2 {
        font-size: 1.1rem;
    }
}

.project:not(:last-child) {
    margin-bottom: 30px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3rem;
}