.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);
}