body{
    font-family: 'Geist', sans-serif;
    background-color: #e8edea;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@media (max-width: 600px) {
    body {
        padding: 0 1rem;
    }
}

nav{
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.me{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-placeholder{
    width: 48px;
    height: 48px;
    background-color: #ccc;
    border-radius: 5px;
    flex-shrink: 0;
}

.me p{
    margin: 0;
}

.presentation{
    color: grey;
}

.tools-grid{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tool-card img{
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.2s ease;
    display: block;
}

.tool-card a:hover img{
    transform: scale(1.2);
}

footer {
    border-top: 1px solid #ccc;
    padding: 1.75rem 0;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer p {
    font-size: 0.8125rem;
    color: gray;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.25rem;
}

footer a {
    font-size: 0.8125rem;
    color: gray;
    text-decoration: none;
    transition: color 0.15s;
}

footer a:hover {
    color: #111;
}