.buttons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    width: 100%;
}

.head-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Orbitron, Arial, Helvetica, sans-serif;
    font-size: clamp(12px, 1.1vw, 18px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.head-button:hover {
    transform: scale(1.1);
}

.head-button:active {
    opacity: 1;
    transform: scale(1.02);
}

.github-logo {
    display: block;
    justify-self: center;
    align-self: center;
    width: clamp(22px, 30cqw, 50px);
    height: auto;
    object-fit: contain;
    max-width: none;
    max-height: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: invert(1);
}

.github-logo:hover {
    transform: scale(1.1);
}

.github-logo:active {
    opacity: 1;
    transform: scale(1.12);
    filter: drop-shadow(10px 10px 6px rgba(0, 0, 0, 0.25));
}